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?
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.
i have arount 25 WARPs on one page. and all of them are based on First WARP. wouldnt it be slow if i do as you told me? ok fine, its working. now there is again a problem. i did some thing same:
but in "warp2" i have a button. on its click i have to Update one More WARP(let say WARP4). how i can do this?
Muhammad Jassim Munir said: in "warp2" i have a button. on its click i have to Update one More WARP(let say WARP4). how i can do this?
Is there any answer for my Post