Hi,
In my page i am using two <updatepanel> controls. In one panel i am using WHDG control and in another panel i am using WebTab control. For WHDG EnableAJAX property is set to true. Now on rowselectionchange event of WHDG I want to pass a value from first panel to second panel inside webtab control's page?
The other question is how to reload the Webtab control inside any event handler?
Can anyone guide me in this?
Thanks,
Mits
Hello Mits,
I found a possible solution for your scenario. Just do a manual postback inside the second UpdatePanel that contains your WebTab. For example like this:
__doPostBack("WebTab1", "");
You can do this manual postback trough any client side event of the WebTab depending on the results you’d like to see or for example by triggering it trough a button.
If you have any further questions regarding this don’t hesitate to ask.
Best Regards,
Maya Kirova
Developer Support Engineer
Infragistics, Inc.
http://ko.infragistics.com/support
Hi Maya,
Thanks for the reply.
I want to refresh the WebTab on rowselectionchanged event of WHDG. If possible can you please give a small example of above code?
Regards,