I am having trouble with the WebDatePicker in IE 10. It is rendering the button as the full width of the control and there is no text input available.
It renders correctly in the IDE and also renders correctly in Chrome. The problem appears to be only present with IE, and IE 10 is the only version that I have installed on my Windows 8 dev machine.
I am also experiencing this issue with version 14.1 when using IE11.
The configuration is simple:
<ig:WebDatePicker ID="dtAuditApprovalStateResponse" runat="server" Nullable="true" StyleSetName="Harvest" />
Hello, I am currently experiencing the issue originally submitted in this post (full post directly below in italics). According to Infragistics, this issue was resolved in build 12.2.20122.2028. However, I am running build 13.2.20132.2187 and experiencing the issue of the WebDatePicker button being rendered as the full width of the control in IE10. Any help with resolving this one would be greatly appreciated. Thank you!
"I am having trouble with the WebDatePicker in IE 10. It is rendering the button as the full width of the control and there is no text input available.
It renders correctly in the IDE and also renders correctly in Chrome. The problem appears to be only present with IE, and IE 10 is the only version that I have installed on my Windows 8 dev machine."
Hi Geoff & Tsanna,
The solution for this problem is provided in below link
http://ko.infragistics.com/community/forums/t/80708.aspx
Do below things,it will reoslve issue
<<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(){};}
Hello Geoff,
Thank you for the feedback. If you need any additional assistance regarding this matter, please let me know.
Sincerely,
Tsanna
Tsanna,
We have not had a chance to install the latest release patches and re-test this problem as yet. In the interim we have utilised a different product for our current solution and will return to Infragistics testing when time permits.
Thank you for your time in this matter,
Regards,
Geoff