We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
On the search method if the values property is not defined there is no changes triggered and no result displayed.
this.search(criteria, this.model.pageInfo()).then(function success(jsonResponse) { currentView.opts.isReadyModelData = true; currentView.model.setTotalRecords(jsonResponse.totalRecords); currentView.model.reset(jsonResponse.values); //Save the criteria and the pagInfo info the session. currentView.saveCriteria.call(currentView, criteria, currentView.model.pageInfo()); }).then(null, function error(errorResponse) { currentView.opts.isReadyModelData = true; currentView.render(); errorHelper.manageResponseErrors(errorResponse, { isDisplay: true }); });
The text was updated successfully, but these errors were encountered:
774897c
pierr
No branches or pull requests
On the search method if the values property is not defined there is no changes triggered and no result displayed.
The text was updated successfully, but these errors were encountered: