I've heard all these great experiences of how great and elegant jQuery is, but I'm 0 for 2 trying to implement jQuery controls in real world projects due to poor performance. I am running into a similar problem as Richard this time. The jQuery UI DatePicker failed User Acceptance Testing in an ASP.NET application I'm working on because while typing in the textbox, there is some lag specifically when entering in the last two numbers. (e.g. '1/1/2010').
Does anyone know of an option/approach that would stop jQuery UI from interfering with the user's typing in the textbox that it's tied to?
| |||||||||||
feedback
|
|
I had the same issue in IE 6. I used a performance tool (DynaTrace Ajax Edition) to see where was the lag and I found it in the update date function performed on a keyup event. So, my work around has been to deactivate the keyup event.
EDIT: There is a drawback of doing this. When typing manually the date, the datepicker will not be refreshed. So, another (better?) solution is to show the date picker only when the user clicks on the little button with the option Then, change the JQuery datepicker code to refresh the date only when the date picker is shown. To do that find the
Of course, it is a bit nasty to change the code of the plugin... | |||||||||
feedback
|
|
To expand on what Jason said, you can override the method outside the base ui file by doing this
} | |||
feedback
|
|
One "solution" would be to use Firefox. I'm seeing the same problem both in my app and on the jquery ui demo page, but only in IE7. | |||||
feedback
|