Hello:
I have an ASP.NET application, form which uses the WebDataGrid (Infragistics35 - v10.3)
I want to use the styles available at http://localhost/ig_common/20103CLR35/Styles
Please could you provide steps for implementing this in my project
The below syntax does not seem to be working, something is missing in the path.
AutoGenerateColumns="False"
AutoCRUD="true" Height="470px" Width="800px" DefaultColumnWidth="100px"
StyleSetPath="/ig_common/20103CLR35/Styles"
StyleSetName="Office2007Blue">
Would it be possible to add this to my config ?
I see that ig_common is added as a Virtual Directory on IIS, so how do we use this on a Production server.
My Styles works perfect if I add the folder to the project. But would it be possible to user the Styles available on IIS.
Thank you
Sushma
Hello Sushma,
If you have copied your Styles within a virtual directory, which can be listed when you type something like this: http://localhost/ig_common/ you can add link to this Styles in your “web.config” file like this:
<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://localhost/ig_common/"/>
That code has to be placed inside the <configuration> tag, but before <system.web> tag.
Let me know if you have any further questions.
Let me know if you have any other questions.