본문 바로가기
프로그래밍/jqgrid

jqgrid 마지막 row 추가

by RPoint 2012. 9. 3.

function resultInsert1( obj )

{

if(obj.HEADER.SCC_YN == "true")

{

//신규 리스트 저장 성공

numberOfRecords1 ++;

var datarow = saveData1.DATA[0];

jQuery.each(datarow , function(name, val){

if( $("#"+name).attr("type") == "select-one" )

{

datarow[name] = $("#"+name+" :selected").text();

}

});


var su=jQuery("#tableList1").jqGrid('addRowData',numberOfRecords1,datarow);

if(su)

{

$("#tableList1").setSelection(numberOfRecords1,true).onSelectRow(numberOfRecords1);

}

saveData1=null;


}

}

'프로그래밍 > jqgrid' 카테고리의 다른 글

jq그리드 속성 변경  (0) 2012.09.12
jqgrid 셀 이벤트  (0) 2012.09.07
jqgrid - 체크 박스  (0) 2012.09.07
jqgrid tree 예제,,,  (0) 2012.09.03
jqgrid 리스트 만들기  (0) 2012.09.03
jqgrid row 수정  (0) 2012.09.03
jqgird 그리드 row 삽입 - 중간에 삽입  (0) 2012.09.03
jqgrid - treegrid 예제...  (1) 2012.08.29

댓글