之前我都是用jqGrid的Dialogs方法進行新增修改
最近有個頁面改用Inline的方法
可是我寫在editParams和addParams裡面的URL沒有反應@@
(編輯/新增後沒寫入DB)
不知道是不是我寫法有誤
$('#project_jqGrid').jqGrid('inlineNav',"#project_jqGridPager",
// the buttons to appear on the toolbar of the grid
{
edit: true,
add: true,
del: true,
cancel: true,
editParams: {
keys: true,
url: 'Edit.php'
},
addParams: {
keys: true,
url: 'Add.php'
}
}
);
再請各位解惑 謝謝 !