Hi,
I'm having a Infragistics WebPanel wrapped inside a WARP. It works well with IE6 but Webpanel doesnt seem to work asnychronoulsy in IE7. I'm having 7.3 version of Infragistics. Is there any hotfix for this? Any help would be appreciated.
Thanks,
Kiran
Hi Kiran,
There is probably something else in your application that breaks behavior. I tested following it is worked fine.
<igmisc:WebAsyncRefreshPanel ID="WARP1" runat="server">
<igmisc:WebPanel ID="WebPanel1" runat="server" BackColor="#C0FFC0">
<Template>
<asp:Button ID="Button2" runat="server" Text="Button" />
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
</Template>
</igmisc:WebAsyncRefreshPanel>
Thank you for your reply.
Meanwhile, as you said, the problem was totally different and I think it might help others to be aware of. What solved the problem was the displau attribute set to"Inline" in IE7. If you have more than one Webpanel wrapped in WARP then without this display setting it works well with IE6 and it doesn't in IE7. Thats what I noticed and resolved.