jqgrid 리스트 만들기
jQuery(document).ready(function() { // 리스트 jQuery("#tableList1").jqGrid({ datatype: "local", height: 300, colNames:['대분류ID','대분류'], colModel:[ {name:'TB_ID',hidden:true,index:'TB_ID', width: 60, sorttype:"string", editable: false, align:"center"}, {name:'TB_NAME',index:'TB_NAME', width: 60, sorttype:"string", editable: false, align:"center"} ], onSelectRow: function(id) { if(id && id!==lastsel1)..
2012. 9. 3.