我决定将https://lorenzofox3.github.io/smart-table-website/合并到我的应用程序中。网站上的示例工作正常,但是,当我开始集成时,我无法进行行选择功能。
演示网站和我之间的主要区别是我使用的是Angular 1.5.8。我调试并识别出碎片,这让我很怀疑:
ng.module('smart-table')
.directive('stSelectRow', ['stConfig', function (stConfig) {
return {
restrict: 'A',
require: '^stTable',
scope: {
row: '=stSelectRow'
},
link: function (scope, element, attr, ctrl) {
var mode = attr.stSelectMode || stConfig.select.mode;
element.bind('click', function () {
scope.$apply(function () {
ctrl.select(scope.row, mode);
});
});
scope.$watch('row.isSelected', function (newValue) {
if (newValue === true) {
element.addClass(stConfig.select.selectedClass);
} else {
element.removeClass(stConfig.select.selectedClass);
}
});
}
};
}]);
函数link
接收scope
对象,其中row
未定义,因此select
函数跳过并且行上没有任何内容。
我在笔上复制了这个问题:http://codepen.io/anon/pen/bwJqBw过滤器和排序工作正常,只有行选择不行。
如何解决问题,原因是什么?范围绑定的语法是否已更改?根据文档似乎没问题,但作为一个有角度的新手,我很难断言。
答案 0 :(得分:1)
你需要在st-select-row中使用你在ng-repeat中使用的相同引用,从你的codepen开始,你正在做:
<tr st-select-row="row" st-select-mode="multiple" ng-repeat="customer in displayedCustomers">
你应该这样做:
<tr st-select-row="customer" st-select-mode="multiple" ng-repeat="customer in displayedCustomers">