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
130
DatePicker Button Extending Into Date Input Field
posted

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

Parents Reply Children
No Data