mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-23 00:13:35 +01:00
Make sure customfield header widgets get finished, even if customfield widget is already done.
Fixes addressbook switching from 'All contacts' to organization and back loses customfield headers
This commit is contained in:
parent
0aaca03d89
commit
2615837137
@ -3137,6 +3137,11 @@ var et2_nextmatch_customfields = (function(){ "use strict"; return et2_customfie
|
||||
}, this);
|
||||
}
|
||||
|
||||
// If this is already attached, widget needs to be finished explicitly
|
||||
if(this.isAttached() && !widget.isAttached())
|
||||
{
|
||||
widget.doLoadingFinished();
|
||||
}
|
||||
// Check for column filter
|
||||
if(!jQuery.isEmptyObject(this.options.fields) && (
|
||||
this.options.fields[field_name] == false || typeof this.options.fields[field_name] == 'undefined'))
|
||||
|
Loading…
Reference in New Issue
Block a user