diff --git a/etemplate/js/et2_extension_nextmatch.js b/etemplate/js/et2_extension_nextmatch.js index 3accc2c4e7..526a79c07b 100644 --- a/etemplate/js/et2_extension_nextmatch.js +++ b/etemplate/js/et2_extension_nextmatch.js @@ -2826,9 +2826,13 @@ var et2_nextmatch_customfields = et2_customfields_list.extend(et2_INextmatchHead if(field.type == 'select') { + if(field.values && typeof field.values[''] !== 'undefined') + { + delete(field.values['']); + } widget = et2_createWidget("nextmatch-filterheader", { id: cf_id, - label: field.label, + empty_label: field.label, select_options: field.values }, this); } diff --git a/etemplate/js/et2_widget_selectbox.js b/etemplate/js/et2_widget_selectbox.js index 4141ba00ed..2036182721 100644 --- a/etemplate/js/et2_widget_selectbox.js +++ b/etemplate/js/et2_widget_selectbox.js @@ -785,7 +785,12 @@ jQuery.extend(et2_selectbox, { var old_type = widget._type; widget._type = type; - type_options = this[type_function].call(this, widget, attrs); + if(typeof attrs.other == 'string') + { + attrs.other = attrs.other.split(','); + } + // Copy, to avoid accidental modification + jQuery.extend(true, type_options, this[type_function].call(this, widget, attrs)); widget._type = old_type; } @@ -1040,7 +1045,7 @@ jQuery.extend(et2_selectbox, return this.cached_server_side_options(widget, options, attrs); }, country_options: function(widget, attrs) { - var options = ','+(attrs.other||[]).join(','); + var options = ','; return this.cached_server_side_options(widget, options, attrs); }, dow_options: function(widget,attrs) { @@ -1068,6 +1073,9 @@ jQuery.extend(et2_selectbox, */ cached_server_side_options: function(widget, options_string, attrs) { + // normalize options by removing trailing commas + options_string = options_string.replace(/,+$/, ''); + var cache_id = widget._type+'_'+options_string; var cache = egw.window.et2_selectbox.type_cache[cache_id]; if (typeof cache == 'undefined')