I am using Infragistics 9.2 for ASP.Net, and am experiencing an issue with the WebDialog control. When I place it on a page that uses a WebPanel control, the WebPanel control's styles change, and look as if they are inheriting directly from the WebDialog control. Additionally, the WebMenu's font changes, and images in the WebMenu do not appear. It looks as if this is a CSS issue. Is there a workaround or fix?
Hi Craig,
Thank you for report. That issue was reproduced and fixed. It will be available in coming service releases.The reason for that behavior was following: If page contained both Infragistics.Web.UI and Infragistics.WebUI controls, then if value of enableAppStyling was not set, then it automatically considered enabled. Therefore, Infragistics.WebUI controls attempted to get all its css classes and images from styleSetPath, which was probably equal to "~/ig_res".
For now you may fix that by adding enableAppStyling="false" in web.config:
<configSections> ... <section name="infragistics.web" type="System.Configuration.SingleTagSectionHandler,System, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/> </configSections> <infragistics.web enableAppStyling="false" styleSetPath="~/ig_res" />