Hi, I need to deactivate a webGrid cell on client side after clicking on that cell. How can do this on Client side? and how to setFocus out of grid?
Thanks in advance.
Mamun
Get a reference to your grid, and call its setActiveCell() method, passing "null" in as your parameter. This should deactivate the active cell, without activating another cell.
To set focus outside the grid, use the appropriate client-side function to put focus to another control.
Thanks for your reply. Can you please provide some sample code?
Hello,
Any search for setActiveCell on our own forums will lead you to good forum threads with samples code, for example this one:
http://forums.infragistics.com/forums/p/5109/23462.aspx#23462
HTH,
Thanks. It works.