Hi.
Is it possible to bind more than one function to an event, at different points in the code.
For example, in one part of the code I would have:
grid.option({ rowSelected: doSomething1 });
Then in another part of the code I would have:
grid.option({ rowSelected: doSomething2 });
And then when the row is selected, both functions trigger.
Using the above style I'm finding that only one is triggering. Is there a way to make both trigger?
Thanks.