Hi!
I'm trying to subscribe to an event that occurs when a different row or cell is selected. I tried with grid.afterSelectChange, but it seems to trigger randomly => not everytime a selection is changed, only in some of theese cases.
Any ideea if this is a bug, or what event should i subscribe to ?
thanks!
I think you're mixing selection and activation. You can select several rows at once, but activate only one. The active row is the one that has the input focus. Use AfterRowActivate event.
Yes, you're right. I've changed that, and it worked fine.
Thanks!