有没有办法在 AngularJS 智能表中触发行选择事件?
这是其他线程中的一个主题,但仍然没有答案。
我需要此功能以便在至少选择 1 行时显示面板。我最初设置了一块手表,但觉得太贵了。
我最终在 stSelectRow 指令中添加了一个回调。
ng.module('smart-table')
.directive('stSelectRow', function () {
return {
restrict: 'A',
require: '^stTable',
scope: {
row: '=stSelectRow',
callback: '&stSelected' // ADDED THIS
},
link: function (scope, element, attr, ctrl) {
var mode = attr.stSelectMode || 'single';
element.bind('click', function ($event) {
scope.$apply(function () {
ctrl.select(scope.row, mode, $event.shiftKey);
scope.callback(); // AND THIS
});
});
//***///
}
};
});
然后我可以将一个函数从我的控制器传递给指令(注意:您可以将选定的行传回,我不需要)
tr ng-repeat="row in customerResultsTable" st-select-row="row" st-select-mode="multiple" st-selected="rowSelected()">
参考了这篇文章以获取帮助回调函数在不同 attr 中定义的指令 attr
这是一款可以轻松放置在智能桌子上的手表:
// fired when table rows are selected
$scope.$watch('displayedCollection', function(row) {
if(!row) return;
// get selected row
row.filter(function(r) {
if (r.isSelected) {
console.log(r);
}
})
}, true);
相关html:
<table st-table="displayedCollection" st-safe-src="rowCollection" class="select-table table">
这个 github 问题很有帮助。