Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
80
StyleSetName?
posted

The following line was inserted into my web.config file, when I began using the Infragistics WebDateChooser control.

 <infragistics.web enableAppStyling="true" styleSetName="Claymation" styleSetPath="~/ig_res/"/>

I would like the styling of the WebDateChooser dropdown button to look like the standard ASP.NET DropDownList button.  The Claymation one looks nothing like it.  What is the easiest way to accomplish this?

I have removed the style entry from the web.config file.  While the style of the WebDateChooser changed, it is not the same as the standard ASP.NET DropDownList control.  Also, the style of my other Infragistics calendar controls also changed, which is not desirable.

What values can be used for the styleSetName property in the web.config file?  How can I get the styling to match the standard ASP.NET DropDownList control?

Thanks

Chuck

 

Parents
No Data
Reply
  • 24497
    posted

    Hi Chuck,

    You may change StyleSetName for editor, or you may change images for buttons. Below examples:

    <igsch:WebDateChooser ID="WebDateChooser1" runat="server" StyleSetName="Default">
    </igsch:WebDateChooser>

    <igsch:WebDateChooser ID="WebDateChooser1" runat="server">
       <DropButton ImageUrl1="./ig_res/Default/images/igsch_xpbluedn.gif" ImageUrl2="./ig_res/Default/images/igsch_xpblueup.gif">
       </DropButton>
    </igsch:WebDateChooser>

Children
No Data