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
Would it be possible to alter the above as follows please.
var event = $.Event(gridEvents.beforeFilter); $grid.trigger(event, $form); if (event.result === false) { return; } $form.submit(); $grid.trigger(gridEvents.afterFilter, $form);
Passing the $form object to the events will allow me to access and add additional info for the filter processing
The text was updated successfully, but these errors were encountered:
Yes. Good idea, I think. Do you have some time for a pull request?
Sorry, something went wrong.
I tought, $form already inside $grid, can just acquire by $(this).children('form.gridview-filter-form')
$grid
$(this).children('form.gridview-filter-form')
No branches or pull requests
Would it be possible to alter the above as follows please.
Passing the $form object to the events will allow me to access and add additional info for the filter processing
The text was updated successfully, but these errors were encountered: