Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1570
How to refresh the WebTab control?
posted

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

Parents
No Data
Reply
  • 29417
    Offline posted

    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

     

Children