mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-16 13:03:12 +01:00
* All apps: fix unable to remove last value from multiselect
This commit is contained in:
parent
dc43139c6c
commit
4eea57c8a8
@ -519,7 +519,7 @@ class etemplate_new extends etemplate_widget_template
|
||||
{
|
||||
if (!is_array($v) || !isset($old[$k]) || // no array or a new array
|
||||
isset($v[0]) && !is_array($v[0]) && isset($v[count($v)-1]) || // or no associative array, eg. selecting multiple accounts
|
||||
is_array($v) && count($v) == 0 && is_array($old[$k])) // Empty array replacing non-empty
|
||||
is_array($v) && count($v) == 0) // Empty array replacing non-empty
|
||||
{
|
||||
$old[$k] = $v;
|
||||
}
|
||||
|
@ -725,11 +725,12 @@ var et2_selectbox = et2_inputWidget.extend(
|
||||
var value = [];
|
||||
jQuery("input:checked",this.multiOptions).each(function(){value.push(this.value);});
|
||||
// we need to return null for no value instead of empty array, which gets overwritten by preserved value on server-side
|
||||
this.value = value.length > 0 ? value : null;
|
||||
this.value = value;
|
||||
}
|
||||
else
|
||||
{
|
||||
this.value = this._super.apply(this, arguments);
|
||||
if (this.value === null) this.value = []; // do NOT return null, as it does not get transmitted to server
|
||||
}
|
||||
return this.value;
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user