I'm trying to use a WebAsyncRefreshPanel in one of the panes of the splitter. I can't seem to find the right combination of properties to get the page to do a partial post back on that WebAsyncRefreshPanel. Evertime I try I get a full page post back. Does the splitter support the WebAsyncRefreshPanel?
Hi,
As per this example : http://samples.infragistics.com/2008.3/WebFeatureBrowser/Default.aspx
I have a asp:content page with Webcombo1 and a warp with another webcombo2.
I have to populate my webcombo2 based on the selected value from webcombo1. So first i could populate the webcombo1 using the datasource event and in the selectedrow change event i could popoulate the webcombo2 based on the selected value from webcombo1.
But the problem is, the page is being postback and again the webcombo1 is populated. So please suggest me how to solve this.
Thanks
loyalite
It is not clear what is not working and what you need to solve. If async postback was triggered by a combo located in the WARP, then all controls on server are instantiated regardless of their locations (inside or outside of WARP). It means that postback will raise databind and combo located outside of WARP will be populated same way as in case of full postback. If that is what you need to avoid, then it is not supported by WARP. WARP can reduce size of response stream and update only its content by response. It is not able to supress initialization logic of server used for a request.