mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-22 14:41:29 +01:00
Fix selectbox set_value() 'unchanged' check to actually check the value
This commit is contained in:
parent
7641661cda
commit
fa020a5a37
@ -408,7 +408,7 @@ var et2_selectbox = et2_inputWidget.extend({
|
||||
if(typeof _value != 'string' && jQuery(this.value).not(_value).length == 0 && jQuery(_value).not(this.value).length == 0)
|
||||
{
|
||||
// Unchanged
|
||||
return;
|
||||
if(_value == this.value) return;
|
||||
}
|
||||
jQuery("option",this.input).attr("selected", false);
|
||||
if(typeof _value == "array")
|
||||
|
Loading…
Reference in New Issue
Block a user