Skip to content
New issue

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

Adding sortCanceled. Passing header in Event details. #227

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

daiplusplus
Copy link

@daiplusplus daiplusplus commented Jun 11, 2022

In a recent project I need to show or hide certain table content based on which column the user wants to sort-by. Currently I'm only able to do this in the afterSort event by inspecting the <thead> for tr > *[aria-sort] - but this isn't ideal.

Ideally I'd like to filter/edit data in the beforeSort event, however this isn't possible because the beforeSort event is raised before the aria-sort="" attributes are updated and no useful data (other than the this reference to the HTMLTableElement) is included in the Event object.

...so this PR uses CustomEvent's detail property to allow the listener of afterSort and beforeSort to get the header (<th>) and update values.

I've also added a new event: sortCanceled, as the tableSort function will simply return (without providing any indication to the consuming page/application's script that it was aborted) after calling beforeSort if there's no data to sort, which I think violates expectations about the pairing of events.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants