jqgrid を動的に構築しましたが、ボタンの onclick 関数を呼び出すことができません。
私のコード:
function buildButtons(cellvalue, options, rowObject) {
var optionsRowId = options.rowId;
var editDelButtons = "<input style=\"height:22px;width:40px;\" type=\"button\" value=\"Edit\" onclick=\"javascript:testRow('" + optionsRowId + "')\" />";
return editDelButtons;
}
function testRow(rowID)
{
alert(rowID);
}
}
jqgridの各行のボタンをクリックすると常に発生するエラーは、「関数が定義されていません」です
私の関数は customFormatter 関数のすぐ下に書かれています。
できるだけ早く助けてください、事前に感謝します。