PMCORE-4131

This commit is contained in:
Paula Quispe
2023-02-13 11:50:13 -04:00
parent 98ee7c9074
commit dcae7ef349
2 changed files with 10 additions and 15 deletions

View File

@@ -411,14 +411,16 @@ NewGroupWindow = function(){
};
//Load Grid By Default
GridByDefault = function(){
GridByDefault = function () {
searchText.reset();
infoGrid.store.load();
store.setBaseParam('textFilter', '');
store.load();
};
//Do Search Function
DoSearch = function(){
infoGrid.store.load({params: {textFilter: searchText.getValue()}});
DoSearch = function () {
store.setBaseParam('textFilter', searchText.getValue());
store.load();
};
//Close Popup Window