i want to do something that i don\'t know if it is possible
The document on their github site is really old.
here is a link to the right page for this problem. http://ui-grid.info/docs/#/tutorial/305_appScope
yourCtrl.gridOptions = {
enableFiltering: true,
enableHiding : false,
enableSorting: true,
appScopeProvider : yourCtrl,
rowTemplate: '',
};
yourCtrl.doSomething = function(row) {
alert("lala");
}
yes, somehow
ng-click="grid.appScope.doSomething"
won't work