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
sort support don't execute inner sort logic
tableInstance.on('sort_click', args => { tableInstance.updateSortState( { field: 'id', //args.field, order: Date.now() % 3 === 0 ? 'desc' : Date.now() % 3 === 1 ? 'asc' : 'normal' }, false ); return false; //return false代表不执行内部排序逻辑 });
The text was updated successfully, but these errors were encountered:
feat: sort support don't execute inner sort logic #230
775bf08
Merge pull request #231 from VisActor/230-feature-sort-support-dont-e…
1240ddc
…xecute-inner-sort-logic feat: sort support don't execute inner sort logic #230
Successfully merging a pull request may close this issue.
What problem does this feature solve?
sort support don't execute inner sort logic
What does the proposed API look like?
The text was updated successfully, but these errors were encountered: