I have an AspxGridView on my page and I have to disable it on client-side. When I want to disable an AspxButton I use btn.SetEnabled(false). And it works fine. But when I try to do the same with a grid then nothing happens! Is it impossible to disable an AspxGridView on client-side or am I doing something wrong?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
Client side disabling for the ASPxGridView is not implemented, sorry. It only works for controls included in the ASPxEditors Library. I would suggest that you send a callback to the server using the GridView's client side PerformCallback method and disable the grid in the GridView's server side CustomCallback event handler. |
|||
|
|
|
Can you wrap the gridview in an asp:Panel and disable the panel instead? |
|||
|