Rank: Advanced Member Groups: Member
Joined: 5/15/2009 Posts: 33
|
Hi,
Is it possible to have the grid disabled, but the verticall scrollbar to still be enabled? I am disableing a grid based on a condition but I still want to leave the users the ability to look at the whole table in the grid by being able to scroll up and down. Could you let me know how to do that or if it is even possible?
Thanks, Mona
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
You might be confusing about "disabling Grid" and "disabling Editing". A Grid can be enabled but not allowing editing. To disable editing on a Grid, you can use a totally different Grid with no editable columns (for example, all StaticColumns), or handling ClientSideBeginEdit on Grid columns and return false from your handler to prevent a column entering editing mode.
Thanks!
|
Rank: Advanced Member Groups: Member
Joined: 5/15/2009 Posts: 33
|
Thanks for pointing that out. You're right, using the client script was what I needed. It works well.
|