Alopex UI2018. 12. 14. 11:33

var oParam = {

end_fn: function() {

$(Pv_grid).alopexGrid("dataGet", function(data) {

data._state.selected = data.CHECKED == "N" ? false : true;

});

$(Pv_grid).alopexGrid("refreshCell");

}

};

Gf_gridGetData_ByPaging(oParam.trId, oParam.grId, {param: oParam.param, resTotalCnt: oParam.resTotalCnt, end_fn: oParam.end_fn});

'Alopex UI' 카테고리의 다른 글

[Alopex Grid] 행 선택/제어 관련 설정  (0) 2018.12.14
Posted by 미랭군
Alopex UI2018. 12. 14. 10:33

rowSelectOption: {

clickSelect: true,

singleSelect: false

},

enableHeaderSelect: true,

rowOption: {

     allowSelect: function(data) {

return (data.type < 5)? true : false

}

}


행 선택

https://grid.alopex.io/html/demo.html#!selectionmove/selectrow


행 선택적 제어

https://grid.alopex.io/html/demo.html#!column/allowSelect

'Alopex UI' 카테고리의 다른 글

[Alopex Grid] 체크박스 수정 화면인 경우 체크 처리  (0) 2018.12.14
Posted by 미랭군