mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 00:54:15 +01:00
Handle values set but not in select_options
This commit is contained in:
parent
53f0873583
commit
3f49db5fb9
@ -306,8 +306,14 @@ var et2_taglist = et2_selectbox.extend(
|
||||
{
|
||||
// alread in correct format
|
||||
}
|
||||
else if (this.options.select_options && typeof this.options.select_options[v] == 'undefined')
|
||||
else if (this.options.select_options && typeof this.options.select_options[v] == 'undefined' || typeof v == 'string')
|
||||
{
|
||||
// Options should have been provided, but they weren't
|
||||
// This can happen for ajax source with an existing value
|
||||
if(this.options.select_options == null)
|
||||
{
|
||||
this.options.select_options = {};
|
||||
}
|
||||
values[i] = {
|
||||
id: v,
|
||||
label: v
|
||||
|
Loading…
Reference in New Issue
Block a user