Hi all,
I am using a webpart inside which a dropdownlist is used to refresh a webasyncrefreshpanel(warp). Warp is getting refreshed on selectedindexchanged event of dropdownlist. But the problem is this event is fired only for the first selection from dropdown. Why is it so? Can anybody help me solve this please?
Thanks in advance,
Prasad M
could you provide some sample codes for the functions: the selecteindexchanged function of dropdown on oncontentrefresh event of warp?
I have similar problems: trying to update a ultragrid in the warp when changing selection in a dropdownlist.
thanks
Guangming
I got a way to solve this. I wrote a onchange javascript function for dropdownlist.
{
var warp=eval(document.getElementById("<%=warpMyFacility.ClientID%>"));
//alert(warp.id);
warpid.refresh();
//__doPostBack(warp, '');
}
So Warp is refreshed on selection of item from drop down.
Then call the selecteindexchanged function of dropdown on oncontentrefresh event of warp.
So cool. But a slight full page refresh still occurs sometimes. But result is much better than before.
Regards,