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
305
calender layout will not expnded in IE10
posted

Hi,

If I click on WebDateChooser, calender layout will not expnded.

This Problem occurs in IE10 only.

Please help me to solve this issue.

Parents
  • 60
    Verified Answer
    posted

    Hi Manikandan,

    I tried the below suggestion from Viktor Snezhko and it resolves the issue. His first suggestion didn't work in my case.

    Link is http://es.infragistics.com/community/forums/t/71403.aspx

    <<suggestion that worked in my case>>

    Hack into applyFilter for each WebDateChooser.
       a. Process ClientSideEvents.InitializeDateChooser. Example,
        <igsch:WebDateChooser ...>
           
    <ClientSideEvents InitializeDateChooser="initDateChooser" />
        </igsch:WebDateChooser>

        b. Check if browser is IE10 or higher and skip default logic of applyFilter. Example (within any block of script object with type=javascript):

    function initDateChooser(dc) {
     
    if (ig_shared.IsIE && ig_shared.MajorIEVersion > 9)
        
    dc.ExpandEffects.applyFilter = function(){};
    }

  • 305
    posted in reply to Paula

    Dear PaulaStana,

    This is working fine.

    Thank you very much..

Reply Children
No Data