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
215
WebDatePicker dropdownCalendar not working
posted

Hi

I' am working with infragistics 15.1 version and on Windows 2008 R2 with IE11.

When i start a new Web site and put a WebDatePicker it works fine. The calendar appears

When i start a new project with ASP.NETT Web Form an put a WebDatePicker, it does not work. The calendar never appears.

For each project i will find in the Web.config  file

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

<section name="infragistics.web" type="System.Configuration.SingleTagSectionHandler,System, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />

 For each Project the ig_res file is existing in the project.

What is wrong and how to make it work.

Regards

Christophe

Parents
  • 7535
    Offline posted

    Hello Christophe,

    In Web.Config file “Section” tag is used to enable application styling for entire Web application. By creating section tag with the name infragistics.web we are creating section for ig_reg .ig_res is a folder containing all CSS files for all the controls and by  writing following code in the web config file, you are providing the styling reference to the entire application .

    In the Web.Config:

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

    <section name="infragistics.web" type="System.Configuration.SingleTagSectionHandler,System, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />

    You can refer the following document to find more information

    http://help.infragistics.com/doc/ASPNET/2015.2/CLR4.0/?page=Web_Enabling_Application_Styling_Using_the_Web_Config_File.html

    Creating new project for WebdatePicker has the same process as you creating a new website .Would like to know how did you added the reference of DLL in the new project? Are you getting any error message?

    I have created a new project of WebDatePicker for your reference. Please find the attachment and let me know ifi may be further assistance.

    WebApplication7.zip
Reply Children