mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-02-17 02:41:02 +01:00
Fix read-only selectboxes rejecting some values (same as r42732)
This commit is contained in:
parent
442c9e6356
commit
3ddf4a0300
@ -737,7 +737,7 @@ var et2_selectbox_ro = et2_selectbox.extend([et2_IDetachedDOM],
|
|||||||
},
|
},
|
||||||
|
|
||||||
set_value: function(_value) {
|
set_value: function(_value) {
|
||||||
if(typeof _value == "string" && _value.match(/[,0-9]+$/) !== null)
|
if(typeof _value == "string" && _value.match(/[,0-9A-Za-z]+$/) !== null)
|
||||||
{
|
{
|
||||||
_value = _value.split(',');
|
_value = _value.split(',');
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user