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)
{
lastsel1=id;
jQuery('#tableList1').jqGrid('restoreRow',lastsel1);
var ret = jQuery("#tableList1").getRowData(id);
onClick_tableList1(ret);
}
},
autowidth :true,
pager: $('#pagerDiv1'),
rowList: [50, 100, 200],
gridview:true,
//viewrecords :true,
loadonce: false,
rownumbers: true, // 줄번호 보이기
rownumWidth: 20,
rowNum: 100
});
});
'프로그래밍 > jqgrid' 카테고리의 다른 글
jq그리드 속성 변경 (0) | 2012.09.12 |
---|---|
jqgrid 셀 이벤트 (0) | 2012.09.07 |
jqgrid - 체크 박스 (0) | 2012.09.07 |
jqgrid tree 예제,,, (0) | 2012.09.03 |
jqgrid 마지막 row 추가 (0) | 2012.09.03 |
jqgrid row 수정 (0) | 2012.09.03 |
jqgird 그리드 row 삽입 - 중간에 삽입 (0) | 2012.09.03 |
jqgrid - treegrid 예제... (1) | 2012.08.29 |
댓글