You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be nice to be able to use MultiSort by default instead of having to hold down the key specified in sortMultiSortKey. Is this possible with the current version or planned for the future?
The text was updated successfully, but these errors were encountered:
It isn't documented (yet), but since the sortMultiSortKey option can be set to any event object, you can pick one that is pretty much always "truthy" (demo):
$(function(){$('table').tablesorter({theme: 'blue',// event.bubbles "should" always be true heresortMultiSortKey: "bubbles",// Use Ctrl + click to remove a column from sorting.sortResetKey: 'ctrlKey',widgets: ['zebra','columns']});});
This might feel like a hack, so if desired, I could add another option to make the table multi-sort by default.
It would be nice to be able to use MultiSort by default instead of having to hold down the key specified in sortMultiSortKey. Is this possible with the current version or planned for the future?
The text was updated successfully, but these errors were encountered: