作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
根据要求,这是一个 plunker- http://plnkr.co/edit/tIkBFO?p=preview
我正在使用 controllerAs 模式。我一直在使用带有过滤器 ($sce) 的单元格模板进行清理,然后构建 HTML。对于我的生活,我无法让 ng-click 注册到我的 Controller 。
我可以将单元格模板更改为 cellTemplate:'<button ng-click="grid.appScope.user.delete(\'works!\')">X</button>'
-> 这行得通。
有没有办法在不使用单元格模板的情况下仍然访问 Controller ?详细信息列是我遇到问题的地方。
感谢阅读!
相关问题- https://github.com/angular-ui/ui-grid/issues/4116
https://github.com/angular-ui/ui-grid/issues/4886
这是代码-
var user = this;
user.gridDefs = [{
displayName: 'User ID',
name: 'userId',
width: "10%"
}, {
name: 'firstName',
width: "15%"
}, {
name: 'lastName',
width: "15%"
}, {
name: 'email',
cellTemplate: '<div ng-bind-html="COL_FIELD |trustedclean"></div>',
width: "25%"
}, {
name: 'username',
width: "15%"
}, {
name: 'details',
cellTemplate:'<div ng-bind-html="COL_FIELD |trustedclean"></div>'
width: "20%"
}, ];
user.gridData = _.map(dataFromSvc.users, function(user) {
var buildDetailsString = buildDetails(user.uid);
var object = {
'userId': user.Id,
'firstName': user.firstName,
'lastName': user.lastName,
'email': '<a href=\"mailto:' + user.primaryEmail + '\">' + user.primaryEmail + '</a>',
'username': user.uid,
'details': '<div><a href=\"#/viewuser/'+user.uid+'/true\">View</a>/<a ng-click=\"user.deleteUser('+user.uid+')\">Delete</a></div>'
return object;
});
user.deleteUser = function(uid) {
console.log(uid);
};
这是 HTML-
<div id="grid2" ui-grid="{ data: user.gridData, columnDefs:user.gridDefs}" class="grid"></div>
最佳答案
这足以绑定(bind)包含字符串的 html
{ field: 'message', displayName : 'Message Description', cellTemplate: '<div ng-bind-html="COL_FIELD"></div>' }
关于javascript - Angular UI Grid : How to bind HTML with the cellTemplate, 并动态构建 ng-click 适用的 HTML,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38275993/
我是一名优秀的程序员,十分优秀!