mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-03 12:39:25 +01:00
Fix searchbox does not keep the search value after reload
This commit is contained in:
parent
d5f0727b2e
commit
0936e5e71e
@ -558,6 +558,11 @@ var et2_searchbox = et2_textbox.extend(
|
|||||||
get_value:function(){
|
get_value:function(){
|
||||||
return this.search.input.val();
|
return this.search.input.val();
|
||||||
},
|
},
|
||||||
|
|
||||||
|
set_value: function (_value){
|
||||||
|
this._super.apply(this,arguments);
|
||||||
|
if (this.search) this.search.input.val(_value);
|
||||||
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* override doLoadingFinished in order to set initial state
|
* override doLoadingFinished in order to set initial state
|
||||||
|
Loading…
Reference in New Issue
Block a user