我试图填充id依赖于usercontrols id,但我最终没有错误而且没有工作。
我不会将所有代码复制到极长的时间,但是我会粘贴示例,其中显示了我所做的并且console.log("arrived")
没有被解雇。
jQuery(function ($) {
var <%=this.ClientID%>_grid_selector = "#<%=this.ClientID%>_grid-table";
var <%=this.ClientID%>_pager_selector = "#<%=this.ClientID%>_grid-pager";
...
jQuery(<%=this.ClientID%>_grid_selector).jqGrid({
data: <%=this.ClientID%>_master,
datatype: "local",
height: 420,
colNames: <%=this.ClientID%>_ColNames,
colModel: <%=this.ClientID%>_ColModel,
afterInsertRow: function(rowId, rowData, rowElement) {
console.log("arrived");
}
});
});