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
When I'm using quick filters it isn't possible to intercept it on transformParams method.
transformParams
Example:
listView.addQuickFilter('Published', function () { return { published: true }; });
app.transformParams(function(params) { // only 'params.page' and 'params.per_page' are available return params; })
After selecting the Published quick filter, only page and per_page are available on transformParams.
Published
page
per_page
Shouldn't params.published be available too?
params.published
The text was updated successfully, but these errors were encountered:
Same thing using singleApiCall method. I think that every parameter should be present on transformParams, shouldn't?
singleApiCall
Sorry, something went wrong.
yep, I agree, this is a bug.
Fixed by #211
Awesome @fzaninotto!
No branches or pull requests
When I'm using quick filters it isn't possible to intercept it on
transformParams
method.Example:
After selecting the
Published
quick filter, onlypage
andper_page
are available ontransformParams
.Shouldn't
params.published
be available too?The text was updated successfully, but these errors were encountered: