forked from extern/egroupware
Fix clear button in search widget disappears after being reloaded
This commit is contained in:
parent
640f69e09a
commit
c279290b01
@ -493,8 +493,10 @@ var et2_searchbox = /** @class */ (function (_super) {
|
||||
};
|
||||
et2_searchbox.prototype.set_value = function (_value) {
|
||||
_super.prototype.set_value.call(this, _value);
|
||||
if (this.search)
|
||||
if (this.search) {
|
||||
this.search.input.val(_value);
|
||||
this.clear.toggle(_value != '');
|
||||
}
|
||||
};
|
||||
et2_searchbox.prototype.set_readonly = function (_readonly) {
|
||||
this.search.set_readonly(_readonly);
|
||||
|
@ -584,7 +584,11 @@ class et2_searchbox extends et2_textbox
|
||||
set_value(_value)
|
||||
{
|
||||
super.set_value(_value);
|
||||
if (this.search) this.search.input.val(_value);
|
||||
if (this.search)
|
||||
{
|
||||
this.search.input.val(_value);
|
||||
this.clear.toggle(_value != '');
|
||||
}
|
||||
}
|
||||
|
||||
set_readonly(_readonly)
|
||||
|
Loading…
Reference in New Issue
Block a user