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
Hello this plugin looks great,however is there any doco related to getting the order list,
Just need to know in the following cases. Once the dragtable is applied to a table - how can i get the current order list.?
The text was updated successfully, but these errors were encountered:
@mmjamal have you solved your issue? i have a similar one, i'm tring to solve looking here http://akottr.github.io/dragtable/
see
$('#localStorageTable').dragtable({ persistState: function(table) { if (!window.sessionStorage) return; var ss = window.sessionStorage; table.el.find('th').each(function(i) { if(this.id != '') {table.sortOrder[this.id]=i;} }); ss.setItem('tableorder',JSON.stringify(table.sortOrder)); }, restoreState: eval('(' + window.sessionStorage.getItem('tableorder') + ')') });
Sorry, something went wrong.
@ainglese it's not working for large tables.
No branches or pull requests
Hello this plugin looks great,however is there any doco related to getting
the order list,
Just need to know in the following cases.
Once the dragtable is applied to a table - how can i get the current order list.?
The text was updated successfully, but these errors were encountered: