mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-27 00:04:26 +02:00
Accept any multiple CSV, not just numeric IDs
This commit is contained in:
@@ -454,7 +454,7 @@ var et2_selectbox = et2_inputWidget.extend(
|
||||
},
|
||||
|
||||
set_value: function(_value) {
|
||||
if(typeof _value == "string" && this.options.multiple && _value.match(/[,0-9]+$/) !== null)
|
||||
if(typeof _value == "string" && this.options.multiple && _value.match(/[,0-9A-Za-z]+$/) !== null)
|
||||
{
|
||||
_value = _value.split(',');
|
||||
}
|
||||
|
Reference in New Issue
Block a user