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
1290
SelectionChanged = Async to update other controls?
posted

Hi, I have a WebDropDown and WebDataTreeControls on the page. When selection is changed in WebDropDown I need to repopulate the tree - and do this without full postback. Is there a way to do that without WARP panels, using AJAX features of controls themselves? For example "SelectionChanged = Async" of the WebDropDown?

Thanks!

Parents
  • 33839
    Suggested Answer
    posted

    Hi,

    When you set the autopostback to async, it means the control fires the server event, but nothing is brought back to the client.  If you want to do this, what I suggest is setting SelectionChanged to On so that a full page postback occurs.  And then wrap the drop down and data tree inside of the same UpdatePanel. 

     

    regards,
    David Young

Reply Children
No Data