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
360
How to Update more than one WRAPs same time
posted

hi all

i have a check box in UltraWebGrid. this grid is in UltraWebTab. in grid i have Check box (which is in a WRAP with Id wrap1) in one of the templated Column. Out side tab i have two WRAPs. i have seen that there is WRAP's property "LinkedRefresshControlID" . i can set only one WRAP to be Refreshed when some PostBack occurs in "wrap1". i want to update more than one WRAP. how can i do this?

Parents
No Data
Reply
  • 5389
    posted

    Muhammad,

    You will have to set the LinkedRefreshControlID property of the second WARP to the ID of the third WARP in order for the third WARP to update when the first one is updated.  Assuming you have 3 WARPs with IDs of "warp1," "warp2," and "warp3," the code would look something like:

    warp1.LinkedRefreshControlID = "warp2";

    warp2.LinkedRefreshControlID = "warp3";

    So when warp1 is updated, it will update warp2, which in turn will update warp3.

Children