-
10 Jul 2012 9:16 AM #1
Answered: Listen to grid plugins expandbody event in controller
Answered: Listen to grid plugins expandbody event in controller
Hi,
I'm trying to listen to rowExpanders "expandbody" event inside of the controller, but I can't seem to get it to work.
Simply adding the following code will do nothing:
Code:this.control({ 'grid': { expandbody: function() { console.log('Hello world'); } } });
-
Best Answer Posted by Dr. Flink
I found the solution reading the code:
Code:this.control({ 'grid tableview': { expandbody: function() { console.log('Hello world'); } } });
-
10 Jul 2012 9:49 AM #2
I found the solution reading the code:
Code:this.control({ 'grid tableview': { expandbody: function() { console.log('Hello world'); } } });Last edited by Dr. Flink; 10 Jul 2012 at 9:53 AM. Reason: Code wrap


Reply With Quote