Fix searchbox does not keep the search value after reload

This commit is contained in:
Hadi Nategh 2016-02-18 13:49:45 +00:00
parent d5f0727b2e
commit 0936e5e71e

View File

@ -559,6 +559,11 @@ var et2_searchbox = et2_textbox.extend(
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
*/