mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-28 01:29:05 +01:00
Handle multiple values that are comma separated
This commit is contained in:
parent
36fa6e27be
commit
5b59e85574
@ -850,6 +850,10 @@ var et2_link_string = et2_valueWidget.extend([et2_IDetachedDOM], {
|
|||||||
this.list.empty();
|
this.list.empty();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
if(typeof _value == "string" && _value.indexOf(',') > 0)
|
||||||
|
{
|
||||||
|
_value = _value.split(',');
|
||||||
|
}
|
||||||
if(!_value.to_app && typeof _value == "object" && this.options.application)
|
if(!_value.to_app && typeof _value == "object" && this.options.application)
|
||||||
{
|
{
|
||||||
_value.to_app = this.options.application;
|
_value.to_app = this.options.application;
|
||||||
|
Loading…
Reference in New Issue
Block a user