mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-22 14:41:29 +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
|
// 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] = {
|
values[i] = {
|
||||||
id: v,
|
id: v,
|
||||||
label: v
|
label: v
|
||||||
|
Loading…
Reference in New Issue
Block a user