mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-14 18:38:29 +02:00
Fix clear button in search widget disappears after being reloaded
This commit is contained in:
@ -493,8 +493,10 @@ var et2_searchbox = /** @class */ (function (_super) {
|
|||||||
};
|
};
|
||||||
et2_searchbox.prototype.set_value = function (_value) {
|
et2_searchbox.prototype.set_value = function (_value) {
|
||||||
_super.prototype.set_value.call(this, _value);
|
_super.prototype.set_value.call(this, _value);
|
||||||
if (this.search)
|
if (this.search) {
|
||||||
this.search.input.val(_value);
|
this.search.input.val(_value);
|
||||||
|
this.clear.toggle(_value != '');
|
||||||
|
}
|
||||||
};
|
};
|
||||||
et2_searchbox.prototype.set_readonly = function (_readonly) {
|
et2_searchbox.prototype.set_readonly = function (_readonly) {
|
||||||
this.search.set_readonly(_readonly);
|
this.search.set_readonly(_readonly);
|
||||||
|
@ -584,7 +584,11 @@ class et2_searchbox extends et2_textbox
|
|||||||
set_value(_value)
|
set_value(_value)
|
||||||
{
|
{
|
||||||
super.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)
|
set_readonly(_readonly)
|
||||||
|
Reference in New Issue
Block a user