jqgrid 셀 이벤트
colModel:[ //{name:'ORG_NO', edittype:"checkbox" , hidden:false,index:'ORG_NO',width:30,sorttype:"string",editable:false,align:"center"}, {name:'ORG_NO_CH',index:'ORG_NO_CH' ,width:30, editable: true , align:"center" ,edittype:"checkbox",editoptions: {value:"true:false"},formatter:"checkbox",formatoptions:{disabled:false},sortable:false ,dataEvents:[ {type:'change',fn:function(e){alert(e)}} ,{ty..
2012. 9. 7.
jqgrid tree 예제,,,
쿼리 계층구조 쿼리 select * from (SELECT ID , NAME , LV , DECODE( LV , 0 ,'',PARENT_ID) PT , decode( (select count(1) from Table where PARENT_ID =A.CLASS_ID) , 0 , 'true' , 'false') LF , 'false' EX FROM Table A ) START with LV =0 connect by PRIOR ID = PT js /----------------------- jQuery(document).ready(function() { // 리스트 jQuery("#tableList1").jqGrid({ datatype: "json", height: 390, width: 'auto', col..
2012. 9. 3.