Signed-off-by: Bill Erickson <berickxx@gmail.com>
persist-key="admin.config.global_flag">
<!-- actions drop-down -->
- <eg-grid-action label="[% l('Test') %]" handler=""></eg-grid-action>
+ <eg-grid-action label="[% l('Test') %]" handler="an_action_handler"></eg-grid-action>
</eg-grid>
// tell the grid which config.global_flag objects to retrieve
setQuery : function() {
return {name : {'!=' : null}};
+ },
+
+ activateItem : function() {
+ alert('dbl click');
}
+
};
+ $scope.an_action_handler = function() { alert('HELLO') }
+
}])