MVC、jQuery、jqGridに関しては、私は非常に初心者です。ユーザーが追加ボタンをクリックしたときに別のページにリダイレクトする方法の解決策を見つけるために、過去 2 日間立ち往生しています。編集ボタンでも同じことを行う必要がありますが、その前に、要求された行を編集できるかどうかを確認するために JavaScript 関数を呼び出す必要があります。
どんな助けでも大歓迎です。
jqGridの作成に使用したコードは次のとおりです
var jqDataUrl = "Account/LoadBaseData";
$(document).ready(function () {
// Set up the jquery grid
$("#ListTable").jqGrid({
// Ajax related configurations
url: jqDataUrl,
datatype: "json",
mtype: "POST",
// Specify the column names
colNames: ["Bank","Account No","Account Name"],
// Configure the columns
colModel: [ { name: "BankReference", index: "BankReference", width: 40, align: "left"}, { name: "AccountNo", index: "AccountNo", width: 40, align: "left"}, { name: "AccountName", index: "AccountName", width: 40, align: "left"}],
// Grid total width and height
width: 850,
height: 400,
// Paging
toppager: true,
pager: $("#ListTablePager"),
rowNum: 14,
viewrecords: true, // Specify if "total number of records" is displayed
// Grid caption
caption: "BankAccount List",
editurl: "/GridDemo/GridSave",
}).navGrid("#ListTablePager",
{ refresh: true, add: true, edit: true, del: true},
{ }, // settings for edit
{}, // settings for add
{}, // settings for delete
{sopt: ["cn"]}
);
});
よろしくお願いします。