AngularJS Smarttable - 选择事件

时间:2015-01-20 09:46:52

标签: angularjs smart-table

有没有办法在AngularJS智能表中的行选择上触发事件?

这是其他主题的主题,但仍然没有回答这一点。

Unable to select the grid item using SmartTable in Angular JS

2 个答案:

答案 0 :(得分:4)

我需要此功能才能在选择至少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()">

参考此帖子寻求帮助Callback function inside directive attr defined in different attr

答案 1 :(得分:0)

这是一款放在Smart Table上的简易手表:

// 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">

This github issue很有帮助。