I have an table that a user can sort by selecting one or more columns.
A user can then do a search on the table which will clear out the
tbody and then insert new table rows into the <tbody>.

When this happens the table headings still have the user selections
for which columns they want sorted, but the table is NOT sorted
because of the ajax call and subsequent update to the tbody.

I do this after the ajax update of the table.

$("#sortable_table").trigger("update");


I know I have to do $("#sortable_table").trigger("sorton",OPTIONS) in
order for sorting to work, but I need options to be the current
columns selected to be sorted. (This is in config.sortList, but I do
not know how to access it.)

Reply via email to