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.

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?

share|improve this question
What exactly you want disabled? remember that the gridview it's just a table at the end, if you want to disable linkbuttons or buttons inside each row of the gridview, you must iterate with jquery for example, my question again it's What exactly you want disabled? – rob.alarcon Apr 8 '11 at 16:15
What I need is disabling the grid in general. I mean, it's checkboxes, linkbuttons, disable focusing, selecting, sorting etc. I need the same effect as when setting the Enabled property of the grid to false. – Z-CORE Apr 8 '11 at 17:11
look at the answer above, it's something like this $(this).find('td:eq(6) a').attr("disabled", true); That means that you can have a javascript function that do the hard work something like function disableGV(){ $(this).find('td:eq(6) a').attr("disabled", true); $(this).find('td:.nice-button-sample-css-class').attr("disabled", true); } and another function to toggle and there you go. Just disable all the elements you want, in this iteration by css class or id client construction. – rob.alarcon Apr 8 '11 at 17:12

2 Answers

up vote 0 down vote accepted

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.

share|improve this answer
I see. Thank you for answering. – Z-CORE Apr 8 '11 at 17:15

Can you wrap the gridview in an asp:Panel and disable the panel instead?

share|improve this answer
It gives the same effect as setting the grid's Enabled attribute to false. It works but only from server-side. – Z-CORE Apr 8 '11 at 17:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.