jquery中Grid表格编辑状态判断
关键代码:(如插入按钮插入行以前判断gird是否为编辑状态)
$('#btnIns').click(function (event) { if ($("#tbPaymentTerm_iledit").hasClass("ui-state-disabled")) { //tbPaymentTerm为Grid绑定ID;tbPaymentTerm_iledit为Grid编辑行编辑按钮的ID;ui-state-disabled为编辑行编辑按钮样式 $.jAlert("please save the record."); $("body").jLoading("destroy"); return false; }//模拟Grid编辑状态 $("#tbPaymentTerm").jqGrid('addRow'); event.preventDefault(); event.stopPropagation(); //保存代码 //$("#tbPaymentTerm").jqGrid('saveRow',$("#" + gridID).jqGrid('getGridParam', 'selrow')); });