Hi,
If I click on WebDateChooser, calender layout will not expnded.
This Problem occurs in IE10 only.
Please help me to solve this issue.
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(){};}
Dear PaulaStana,
This is working fine.
Thank you very much..