mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 09:04:53 +01:00
Modifications to cached options
- country list no longer supports options when caching - copy options to avoid modification with additonal options
This commit is contained in:
parent
c0097b3860
commit
1da6e78def
@ -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);
|
||||
}
|
||||
|
@ -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')
|
||||
|
Loading…
Reference in New Issue
Block a user