|
@@ -210,6 +210,7 @@ let listObj = {
|
210
|
210
|
let param = $('#ITP_FORM_ORDMNG03010_SEARCH').serializeObject();
|
211
|
211
|
param.gridSize = $.jgrid.defaults.rowNum; // 그리드 사이즈 20
|
212
|
212
|
param.gridPage = $.jgrid.defaults.page; // 페이지 1
|
|
213
|
+ /*물어봐야할것들*/
|
213
|
214
|
$(ORDMNG03010_GRID_ID).setGridParam({'postData': JSON.stringify(param)}).trigger('reloadGrid');
|
214
|
215
|
},
|
215
|
216
|
create: function() {
|
|
@@ -239,6 +240,8 @@ let listObj = {
|
239
|
240
|
init: function() {
|
240
|
241
|
var _this = this; //_this = this
|
241
|
242
|
this.push(); //push 부르기
|
|
243
|
+
|
|
244
|
+ /*물어봐야할것들*/
|
242
|
245
|
$(ORDMNG03010_GRID_EMPTY).on('click', function() {
|
243
|
246
|
_this.itp_ORDMNG03010_param.gridSize = $.jgrid.defaults.rowNum;
|
244
|
247
|
$(ORDMNG03010_GRID_ID).setGridParam({'postData': JSON.stringify(_this.itp_ORDMNG03010_param)}).trigger('reloadGrid');
|
|
@@ -272,6 +275,7 @@ let listObj = {
|
272
|
275
|
url: DOMAIN + API_DELI_GRID_LIST,//API 주소 정보
|
273
|
276
|
pager: ORDMNG03010_GRID_PAGER, //페이지 정보
|
274
|
277
|
multiselect: true, //동시선택 가능
|
|
278
|
+ /*물어봐야할것들*/
|
275
|
279
|
loadComplete: function(data) {
|
276
|
280
|
itp_fn_grid_load_complete(data, ORDMNG03010_GRID_ID, true, 'number', 'ORDMNG03010', listObj.itp_ORDMNG03010_search, listObj.empty, true, data.gridRecords, true);
|
277
|
281
|
|