Maybe I'm missing something in the documentation, but I am trying to determine which specific images I need to publish with an asp.net application that has infragistics controls on it.
For example I have a page that has a webdropdown and an UltrawebGrid, both set to use the Office2007Blue styleset. Depending on how I have set the properties on this page, the Office2007Blue theme CSS and image files are automatically copied to my ig_res folder.
My assumption is I probably need to publish about 5 or less images and a couple of CSS files for this to work properly instead of the 100+ files in the ig_res Office2007Blue folder.
This is a non-issue if I'm local to the webserver.
This is a real issue when I'm trying to publish over a fairly slow VPN like I have to do frequently.
Any insight would be helpful.
Hello Bill,
If you do not want to deploy every time the ig_res folder you can deploy it to another server and after you can reference it in the web.config
For example
<configSections>
<section name="infragistics.web" type="System.Configuration.SingleTagSectionHandler,System, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
</configSections>
<infragistics.web styleSetName="Default" styleSetPath="http://DOMAIN_NAME/APPLICATION/ig_res" />
For more information please refer to the following help link:
http://help.infragistics.com/NetAdvantage/ASPNET/2010.1/CLR3.5/?page=Web_Enabling_Application_Styling_Using_the_Web_Config_File.html
Let me know if you need more assistance regarding this.
That would work - I may wind up doing that.
I was hoping for a more efficient way to determine what I need for a specific site, but I guess that may not be possible.
Thanks!
I do not recommend you to modify the ig_res folder in order to reduce the size.
The Aikido components do not have any build-in style.
Their appearance is fully dependable on the CSS classes and the images inside the ig_res folder.