mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 00:54:15 +01:00
Fix missing explicitly supplied select options
This commit is contained in:
parent
c55c5c3918
commit
a8a73683b4
@ -135,6 +135,11 @@ var et2_taglist = et2_selectbox.extend(
|
||||
// Initialize magicSuggest here
|
||||
if(this.taglist != null) return;
|
||||
|
||||
// If no options or ajax url, try the array mgr
|
||||
if(this.options.select_options === null && !this.options.autocomplete_url)
|
||||
{
|
||||
this.set_select_options(this.getArrayMgr("sel_options").getEntry(this.id));
|
||||
}
|
||||
|
||||
// MagicSuggest would replaces our div, so add a wrapper instead
|
||||
this.taglist = $j('<div/>').appendTo(this.div);
|
||||
|
Loading…
Reference in New Issue
Block a user