2
我正在使用jqGrid的內聯編輯和添加功能,並且需要在jqGrid的保存操作期間對插入在內聯單元格中的數據執行驗證。對於我所用:在驗證中禁用jqModal彈出窗口jqGrid
editrules: {custom:true,custom_func:customCheck}
在customCheck:
function customCheck(){
///DO SOMETHING
return [false,"some message if invalid"];
}
它工作得很好,但我不希望顯示在彈出jqModal錯誤消息。相反,我想在customCheck()本身做些事情。
function customCheck(){
///DO SOMETHING
if(invalid)
//show a error div
return false;
}
我不知道如何禁用彈出jqModal。
感謝您的建議,我會檢查出來。 – Runcorn