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?

link|improve this question

Just tried this on the jquery ui demo page. No issues at all. Can you recreate this issue? Have you got any video demonstrating the problem, any facts / figures, also which browsers, what was the spec of the pc....etc etc, what other js was running on the page, how many other controls...We really need more info. – redsquare Jul 14 '10 at 22:44
As redsquare said - have you tried the jQuery UI demo on the jQuery website? If you don't have problems there, then there may be something very specific with your site. – JasCav Dec 22 '10 at 16:15
Did you ever find an answer? I'm experiencing the exact issue, and I have the same problem on the jQueryUI demo site as well. – Joe Enos Dec 29 '10 at 20:43
Nope, no answer :( – Sephrial Jan 25 '11 at 19:30
I'm seeing this now too. It wasn't always like this, I wonder what changed... – DGM Jun 16 '11 at 4:42
feedback

3 Answers

up vote 3 down vote accepted

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.

$( "#idOfTheInput" ).unbind("keyup");

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 showOn: 'button' (more info here: http://jqueryui.com/demos/datepicker/#icon-trigger )

Then, change the JQuery datepicker code to refresh the date only when the date picker is shown. To do that find the _doKeyUp function and add a condition saying "if the date picker is shown, do your update, otherwise do not refresh".

_doKeyUp: function(event) {
    var inst = $.datepicker._getInst(event.target);
    if ($.datepicker._datepickerShowing) {
        if (inst.input.val() != inst.lastVal) {
            try {
                var date = $.datepicker.parseDate($.datepicker._get(inst, 'dateFormat'),
                    (inst.input ? inst.input.val() : null),
                    $.datepicker._getFormatConfig(inst));
                if (date) { // only if valid
                    $.datepicker._setDateFromField(inst);
                    $.datepicker._updateAlternate(inst);
                    $.datepicker._updateDatepicker(inst);
                }
            }
            catch (event) {
                $.datepicker.log(event);
            }
        }
    }
    return true;
},

Of course, it is a bit nasty to change the code of the plugin...

link|improve this answer
Awesome, would you mind sharing the tool you used? I can't wait to test this out next week. – Sephrial Mar 24 '11 at 5:17
I used DynaTrace Ajax. Basically, this software trace everything between you and the server: network, cache, javascript and Ajax. I don't like to advertise but it is an amazing program. Very helpful. – Jason Mar 24 '11 at 7:19
So, @Sephrial, did you try this? Is it working fine? – Jason Apr 5 '11 at 8:26
Sorry took me so long, I couldn't reproduce the problem in IE 9. So, I went back and sure enough IE 7 still lags. Used your fix and problem vanished. Thanks! – Sephrial Jul 12 '11 at 18:01
feedback

To expand on what Jason said, you can override the method outside the base ui file by doing this

jQuery(function(){
  jQuery.datepicker._doKeyUp = function(event) {
    var inst = jQuery.datepicker._getInst(event.target);
    if(jQuery.datepicker._datepickerShowing) {
        if(inst.input.val() != inst.lastVal) {
            try {
                var date = jQuery.datepicker.parseDate(jQuery.datepicker._get(inst, 'dateFormat'),
                                                       (inst.input ? inst.input.val() : null),
                                                       jQuery.datepicker._getFormatConfig(inst));
                if(date) { // only if valid
                    jQuery.datepicker._setDateFromField(inst);
                    jQuery.datepicker._updateAlternate(inst);
                    jQuery.datepicker._updateDatepicker(inst);
                }
            }
            catch (event) {
                jQuery.datepicker.log(event);
            }
        }
    }
    return true;
}

}

link|improve this answer
Thanks Christian. More convenient (and less dirty!) way to change the function. +1 – Jason Jul 13 '11 at 7:49
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.

link|improve this answer
Please don't post comments as answers on Stack Overflow. This is not a forum, it is a Q/A site. – meagar Dec 22 '10 at 15:32
I don't seem to have access to add a comment on the original question, but wanted to point out that it seems to be an IE7 issue. – undaunted Dec 22 '10 at 16:46
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.