mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-28 19:03:14 +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
8e378a7560
commit
459b38f5c1
@ -214,7 +214,9 @@ app.classes.infolog = AppJS.extend(
|
|||||||
if (filter && dates)
|
if (filter && dates)
|
||||||
{
|
{
|
||||||
dates.set_disabled(false);
|
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;
|
break;
|
||||||
default:
|
default:
|
||||||
|
Loading…
Reference in New Issue
Block a user