mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:20 +01:00
Don't add empty label as option for tags or search (chosen), it's registered as a real option.
This commit is contained in:
parent
1e4137665b
commit
7a674ff8aa
@ -678,6 +678,9 @@ var et2_selectbox = et2_inputWidget.extend(
|
||||
this.input.children('[value=""]').remove();
|
||||
}
|
||||
}
|
||||
// Don't do it again if already done
|
||||
if(this.input.hasClass("chzn-done")) return;
|
||||
|
||||
// Properly size chosen, even if on a hidden tab
|
||||
var size = egw.getHiddenDimensions(this.input);
|
||||
this.input.chosen({
|
||||
@ -706,7 +709,8 @@ var et2_selectbox = et2_inputWidget.extend(
|
||||
this.multiOptions.empty();
|
||||
}
|
||||
// Re-add empty, it's usually not there (empty_label get's allways translated, independent of no_lang!)
|
||||
if(this.options.empty_label)
|
||||
// Empty label should not be added as an option for chosen, it conflicts
|
||||
if(this.options.empty_label && !(this.options.tags || this.options.search))
|
||||
{
|
||||
this._appendOptionElement('', this.egw().lang(this.options.empty_label));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user