mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-27 00:09:13 +01:00
Fire change event when input is changed via code
This commit is contained in:
parent
282fb76cb6
commit
5d1a8e16ee
@ -140,13 +140,17 @@ var et2_inputWidget = et2_valueWidget.extend([et2_IInput,et2_ISubmitListener],
|
||||
},
|
||||
|
||||
set_value: function(_value) {
|
||||
this._oldValue = _value;
|
||||
|
||||
var node = this.getInputNode();
|
||||
if (node)
|
||||
{
|
||||
$j(node).val(_value);
|
||||
if(this.isAttached())
|
||||
{
|
||||
$j(node).change();
|
||||
}
|
||||
}
|
||||
this._oldValue = _value;
|
||||
},
|
||||
|
||||
set_id: function(_value) {
|
||||
|
Loading…
Reference in New Issue
Block a user