|
@@ -834,6 +834,8 @@ let listObj = {
|
834
|
834
|
let param = $('#ITP_FORM_POMNG03010_SEARCH').serializeObject();
|
835
|
835
|
param.gridSize = $.jgrid.defaults.rowNum;
|
836
|
836
|
param.gridPage = $.jgrid.defaults.page;
|
|
837
|
+ console.log(111);
|
|
838
|
+ console.log(JSON.stringify(param));
|
837
|
839
|
$(POMNG03010_GRID_ID).setGridParam({'postData': JSON.stringify(param)}).trigger('reloadGrid');
|
838
|
840
|
},
|
839
|
841
|
pocreate: function(param) {
|
|
@@ -936,9 +938,13 @@ let listObj = {
|
936
|
938
|
loadComplete: function(data) {
|
937
|
939
|
itp_fn_grid_load_complete(data, POMNG03010_GRID_ID, true, 'number', 'POMNG03010', listObj.itp_POMNG03010_search, listObj.empty, true, data.gridRecords, true);
|
938
|
940
|
var ids = $(POMNG03010_GRID_ID).getDataIDs();
|
|
941
|
+ var css = {'background-color':'#FFCCCC'};
|
939
|
942
|
$.each(ids, function(idx, rowId) {
|
940
|
943
|
$(POMNG03010_GRID_ID).jqGrid('setCell', rowId, 'storeId', '', ITP_GRID_COL_STYLE.link);
|
|
944
|
+ $(POMNG03010_GRID_ID).jqGrid('setCell', rowId, 'dlvReqDt', '', css);
|
|
945
|
+ $(POMNG03010_GRID_ID).jqGrid('setCell', rowId, 'whsNm', '', css);
|
941
|
946
|
});
|
|
947
|
+ $(POMNG03010_GRID_ID).setSelection(1, true);
|
942
|
948
|
},
|
943
|
949
|
onPaging: function(action) {
|
944
|
950
|
itp_fn_grid_paging(POMNG03010_GRID_ID, action, param);
|