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
350
WebAsyncRefreshPanel post back when in Web Splitter
posted

Hi,

My WebAsyncRefreshPanel is post back to server when I take it onto WebSplitter.Here my sample code. All controls are onto WebSplitter

protected void Page_Load(object sender, EventArgs e)
        {
            this.WebAsyncRefreshPanel2.AddLinkedRequestTrigger("WebImageButton2");
        }

        protected void WebImageButton2_Click(object sender, Infragistics.WebUI.WebDataInput.ButtonEventArgs e)
        {
            this.WebTextEdit4.Text = this.WebTextEdit3.Text;
        }

WebAsyncRefreshPanel could not run when it is onto WebSplitter, could it? My Infragistics's version is 2008.2

Thanks.

-Sang