これは、qxgrid のカスタム ボタン列の定義です。
{ text: 'Actions', cellsrenderer: function (row, column, value)
{
var viewType = $("#divManageViewGrid").jqxGrid('getcellvalue', row, 'VIEW_TYPE');
if (viewType == "Shared") {
return '<input type="button" class="button-link" id="btnRemove" value="Remove"/>';
}
return '<input type="button" class="button-link-delete" value="Delete"/>';
}
} column definition
これは、1 回だけ発生するボタン クリック イベントです。
$(document).on(‘click’, “.button-link”, function ()
{
//open popup
var row = $(“#divManageViewGrid”).jqxGrid(‘getselectedrowindex’);
id = $(“#divManageViewGrid”).jqxGrid(‘getrowid’, row);
$("#popupWindow").jqxWindow('show');
});
ボタンクリックイベントは一度だけ発生します