gpt4 book ai didi

angularjs - 使用 jqGrid 和 AngularJS 进行演示

转载 作者:行者123 更新时间:2023-12-03 01:44:36 25 4
gpt4 key购买 nike

我只是在 Controller 中创建一个 jqGrid。我想在每行中添加一些按钮,并在 Controller 中添加一些事件。之前在 jquery 中:

 option.gridComplete=function () {
var ids = jQuery("#list").jqGrid('getDataIDs');
for (var i = 0; i < ids.length; i++) {
var cl = ids[i];
var edit = '<input type="button" onclick="edit()">';
jQuery("#list").jqGrid('setRowData', ids[i], {
act: edit
});
}
}

请有人告诉我如何在编辑按钮中绑定(bind) ng-click像这样
var edit = '<input type="button" ng-click="edit()">';

最佳答案

您可以在 html 中创建一个隐藏输入并将其绑定(bind)到它也许

 '<input type="button" onclick="$(hiddenButton).click()">'

在你的html中

 <input type="hidden" id="hiddenButton" ng-click="edit()">

关于angularjs - 使用 jqGrid 和 AngularJS 进行演示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20650315/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com