Hi, I'm using a treeview control on my application, and in my Dev, Test and UAT environments, I'm seeing the arrows for the expand/collapse icons. However, on my Prod environment, which theoretically is the same as my UAT environment, I see the plus/minus signs.
Looking at the css coming down as a WebResource, on UAT, I see:
/* START Telerik.Web.UI.Skins.TreeViewLite.css */
But on the css that comes down from Prod, I see this:
/* START Telerik.Web.UI.Skins.TreeView.css */
I've gone through my code trying to figure out why, can't see anything. Also, after looking through documentation on this site, I have added the following lines to my web.config, but with no change:
<appSettings>
...
<add key="Telerik.Web.UI.RenderMode" value="lightweight" />
</appSettings>
...
<system.webServer>
...
<httpProtocol>
<customHeaders>
<add name="X-UA-Compatible" value="IE-Edge" />
</customHeaders>
</httpProtocol>
</system.webServer>
Is there any other things I should know about my production environment that might be causing this behavior?
I'm currently using version 2017.1.228.40 of the Telerik assemblies & running .NET 4.5.1
Thanks,
Phil