summaryrefslogtreecommitdiffstats
path: root/ecomp-portal-FE/client/bower_components/angular-smart-table/src/stSelectRow.js
diff options
context:
space:
mode:
Diffstat (limited to 'ecomp-portal-FE/client/bower_components/angular-smart-table/src/stSelectRow.js')
-rw-r--r--ecomp-portal-FE/client/bower_components/angular-smart-table/src/stSelectRow.js26
1 files changed, 26 insertions, 0 deletions
diff --git a/ecomp-portal-FE/client/bower_components/angular-smart-table/src/stSelectRow.js b/ecomp-portal-FE/client/bower_components/angular-smart-table/src/stSelectRow.js
new file mode 100644
index 00000000..188408f8
--- /dev/null
+++ b/ecomp-portal-FE/client/bower_components/angular-smart-table/src/stSelectRow.js
@@ -0,0 +1,26 @@
+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);
+ }
+ });
+ }
+ };
+ }]);