mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-14 03:54:29 +01:00
Give all the other stuff a chance to run before we try to set focus - fixes focus is set then lost on the first time you set filter by start or due date
This commit is contained in:
parent
d7d9e331e7
commit
28febe25f7
@ -214,7 +214,9 @@ app.classes.infolog = AppJS.extend(
|
||||
if (filter && dates)
|
||||
{
|
||||
dates.set_disabled(false);
|
||||
jQuery(this.et2.getWidgetById('startdate').getDOMNode()).find('input').focus();
|
||||
window.setTimeout(function() {
|
||||
jQuery(dates.getWidgetById('startdate').getDOMNode()).find('input').focus();
|
||||
},0);
|
||||
}
|
||||
break;
|
||||
default:
|
||||
|
Loading…
Reference in New Issue
Block a user