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 미랭군
자바·JSP2018. 12. 14. 11:16

Apache Configuration for Java WebStart

Additional AddTypes required for Apache to send the correct Mime-Type for Java WebStart (jnlp) files.


httpd.conf

Add the following entries to the apache httpd.conf



AddType application/x-java-jnlp-file .jnlp

AddType application/x-java-archive .jar

AddType application/x-java-archive-diff .jardiff


Apache will then send the correct mime-type to the browser and therefore Java will be started when the jnlp file is clicked on.

'자바·JSP' 카테고리의 다른 글

XML 파싱 예제  (0) 2020.04.11
[JAVA] OS별로 CPU정보 가져오기  (0) 2019.04.05
POST, GET 방식 확인  (0) 2018.01.25
원리금 균등 분할 상환 계산  (0) 2017.12.20
두 IP사이의 IP 모두 출력하기  (0) 2015.10.20
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 미랭군