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
20
Date Picker Provider Transparent Background
posted

I am trying to set up the DatePickerProvider to allow users to select from dates from a drop down in a WebDataGrid. I can't seem to get the background to be opaque.

Here is the editor provider:

<EditorProviders>

  <ig:DatePickerProvider ID="DateInputProvider">

    <EditorControl ClientIDMode="Predictable" runat="server">

    </EditorControl>

  </ig:DatePickerProvider>

</EditorProviders>

And the editing core behaviour:

<ig:EditingCore BatchUpdating="true" AutoCRUD="True">

   <Behaviors>

     <ig:CellEditing Enabled="true">

       <ColumnSettings>

         <ig:EditingColumnSetting ColumnKey="ColName" EditorID="DateInputProvider" />

       </ColumnSettings>

     </ig:CellEditing>

   </Behaviors>

</ig:EditingCore>

And here is an image of what the result is:

Transparent Background

As you can see under the "Sun" and "Mon" There is another date that is still visible. I have tried editing multiple background colour properties, but none seem to work. I have tried removing all (custom) css, just leaving the default infragistics css. Let me know if this is enough information.

  • 16310
    Offline posted

    Hi Matt,

    It seems that the infragistics css are not loaded/applied to the controls. Please make sure that you have the ig_res folder in your app folder and it is successfully uploaded to the server if you access the page on a server domain. You may also want to verify the following line in your web.config file:

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

    for any errors or copy/paste it if it is currently missing.

    If issue still persiste please try to provide a copy of your sample that I can investigate for you.