Small Problem with responsive column toggle table in JQM 1.3.1

Small Problem with responsive column toggle table in JQM 1.3.1

Hi,

when I have a responsive column toggle table (eg as in  http://view.jquerymobile.com/1.3.1/dist/demos/widgets/table-column-toggle/) and resize the window to make it smaller until a column is hidden because of a breakpoint reached and the make the window wider again the now hidden column does never come back (try it on the mentioned demo page!).

Reason IMHO is that in the self.update function starting at line 10913 in the 1.3.1 distribution first if (this.checked) is true (because this is the default) then it is set to false as a width below the breakpoint is reached and the cell is thus now hidden. On the next self.update invocation if (this.checked) is now false, so addClass('ui-table-cell-hidden') is executed, making the cells permanently hidden (until user action in the switchboard).

Regards,
  Wolfgang
PS Another problem: when a th contains an abbr, according to the documentation the abbr.title should be picked up for the switchboard entries, this does not work for me. Reason that line 10868 in the 1.3.1 distribution  simply uses $( this ).text() .