The V14.1 DatePicker intermittently extends the dropdown button into the date input field after the browser cache has been cleared using IE11. I have debugged it and found that the parent TD element of the IMG button width is set as 113 pixels, instead of the configured value of 15.
I can get around it by using the following code:
window.onload = function Onload() {
setTimeout(function () { $(".igte_HarvestButtonImg").each(function () { if ($(this).parent().width() > 15) { location.reload(); return; }
}); }, 100);
}
I don't think this is a good workaround as it causes a page refresh.
Attached is a screen shot. Note that the windows alert shows the TD size to be 113.
URL: https://drive.google.com/open?id=0B5Og6L5oQBzObC14TDdFZno2QkE
Hello,
I'm glad that you have solved this issue. If you have other questions, don't hesitate to contact us.
Regards,
Marina Stoyanova,
Software Developer,
Infragistics, Inc.
I found a fix for this issue by changing one of the Infragistics css files.
I changed ig_texteditor.css from
.igte_HarvestButtonImg
{
To:
width: 5px;
The issue is no longer happening. You can close this.
Thank you for using our community.
I have investigated your case and with the default settings of the WebDatePicker I’m not able to reproduce it. I have attached the sample I used to test your issue, please modified it in order to replicate the issue. Thus I will be able to further investigate your case.
Best Regards, Marina Stoyanova, Software Developer, Infragistics, Inc.