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.
Hello Geoff Flood,
Thank you for contacting Infragistics Support.
This issue has been resolved in build 12.2.20122.2028. Updating the latest service release would likely resolve your problem. You can do this if you browse to https://es.infragistics.com/my-account/keys-and-downloads/ . After selecting the respective product key in the license key list, a "Service Releases" tab will appear in the bottom of the page where will all available service releases associated with that subscription be.
Please, let me know if you need some further assistance.
Best Regards,
Tsanna Belcheva
Developer Support Engineer
Infragistics, Inc.
http://es.infragistics.com/support
The service release fixed the immediate problem that I was having, but now I have another that is related.
When I dynamically create a DatePicker control in code, it displays correctly in IE 10 until the mouse is moved over the control, then the button section expands to fill the entire control and I am back to the original problem.
This is not happening with DatePicker controls that have been added to the page at design time, only controls created in code. I am suspecting that there is a property that I need to set to correct this problem, but I cannot find which one.
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://es.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