diff --git a/etemplate/js/et2_widget_selectbox.js b/etemplate/js/et2_widget_selectbox.js index b4b5b3a957..d86b8369c3 100644 --- a/etemplate/js/et2_widget_selectbox.js +++ b/etemplate/js/et2_widget_selectbox.js @@ -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(','); }