I want to set RefreshInterval property value 3000 when I check/uncheck my checkbox in code behind. But it is not working. Below by code ...
<infra:WebAsyncRefreshPanel ID="asyncPanel" runat="server" Width="100%" RefreshComplete="asyncPanel1_RefreshRequest" ContentRefresh="WebAsyncRefreshPanel1_ContentRefresh"RefreshTargetIDs="UltraWebGrid">
</infra:WebAsyncRefreshPanel>
protected void Page_Load(object sender, EventArgs e){ if (chkAutoRefresh.Checked) { asyncPanel.RefreshInterval = 3000; }
}
protected void WebAsyncRefreshPanel1_ContentRefresh(object sender, EventArgs e){ GetInListData();}
Hi suday,
Let me know if you still need assistance with the matter.
Hello suday,
I tested the WebAsyncRefreshPanel under IE9, Chrome and Firefox using your code, but it is working as expected. Could you please specify what exactly is not working and the version of Infragistics controls you are using?