inline edit로 수정중에 input이 열려있는 상태로 저장버튼을 눌리게되면


그 input 박스는 인식을 못하고 저장을 하는 경우가 있더군요.


그리고 사용자 편의상 input이 열려있는 상태에서도 저장이되게끔 해줘야 하는게 당연하다고 생각이드네요


1
2
3
4
5
,afterEditCell:function(rowid, cellname, value, iRow, iCol){
    $("#" + rowid + "_" + cellname).blur(function(){
        $("#table").jqGrid("saveCell",iRow,iCol);
    });
}
cs