Rank: Advanced Member Groups: Member
Joined: 9/2/2010 Posts: 120
|
Hi,
I need to change the readonly status of a grid cell (or column) at runtime. How do I do this in javascript?
Thanks in advance, Camarate
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
You will need to handle the Column's ClientSideBeginEdit event and return false to cancel the edit. That event is called every time a cells is about to enter edit mode. If you returns false, then it will not enter edit mode.
Thanks!
|