|
@@ -14,6 +14,7 @@
|
|
|
init: function(options) {
|
|
|
$.table._option = options;
|
|
|
$.table._params = $.common.isEmpty(options.queryParams) ? $.table.queryParams : options.queryParams;
|
|
|
+ _height = $.common.isEmpty(options.height) ? undefined : options.height;
|
|
|
_sidePagination = $.common.isEmpty(options.sidePagination) ? "server" : options.pagination;
|
|
|
_sortOrder = $.common.isEmpty(options.sortOrder) ? "asc" : options.sortOrder;
|
|
|
_sortName = $.common.isEmpty(options.sortName) ? "" : options.sortName;
|
|
@@ -30,6 +31,7 @@
|
|
|
contentType: "application/x-www-form-urlencoded",
|
|
|
method: 'post',
|
|
|
cache: false,
|
|
|
+ height: _height,
|
|
|
striped: _striped,
|
|
|
sortable: true,
|
|
|
sortStable: true,
|