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
502
refresh WebAsyncRefreshPanel in js
posted

How can I do that ?

once I click on a button, I make a xmlhttprequest in js which update sg, rigth after that I would like to refresh a panel

 

how can I do that ?

 

thx

Parents
No Data
Reply
  • 636
    posted

    panelName is your webAsyncRefreshPanel Id and

    you need to have your script manager enabled on your aspx page. Then using ig$ you can get the warp panel object. 

    var warp = ig$(panelName);
    if
    (warp)
    warp.refresh();  //this command will refresh panel on client side.

Children