Rob Garrison

Results 801 comments of Rob Garrison

Hi @mokraemer! Sorry for taking so long to respond! Yes, there are some inherent flaws in the parser logic, but the parser detection has been in place so long that...

Hi @ieraora! Sorry, for the delay. I'm not that good with php. You might get better advice from [Stack Overflow](https://stackoverflow.com/questions/tagged/php).

Hi @ken-colvin! Instead of wrapping the rows in a `...`, wrap them in a `...` Demo: https://jsfiddle.net/Mottie/uke86wLw/42/

Sadly, no that isn't possible to do right now. The math widget doesn't target the `thead` at all, and would also need to update the calculations within the sticky header...

Use the [`math_complete` callback](https://mottie.github.io/tablesorter/docs/example-widget-math.html#math_complete) to target & update the data - I guess you could target a header or element outside the table using this method.

Hi @matjaz321! Hmm, that is strange. When I test it in this demo - https://jsfiddle.net/Mottie/bbxxomhx/2031/ - I see the saved sort is restored every time, but only if I use...

Hi @SaraKlasson! I'm not sure why you'd be seeing this problem. The docs with all dependencies are served from the GitHub pages server.

Hi @ken-colvin! You can set the [`savePages` option](https://mottie.github.io/tablesorter/docs/#save-pages) to `false`. Alternatively, you can keep the storage, but set the [`storage_storageType` option](https://mottie.github.io/tablesorter/docs/#widget-storage-storage-type) to `session`. Then, _all_ storage is cleared whenever the...

Set the [`savePages` option](https://mottie.github.io/tablesorter/docs/#save-pages) in the `tablesorterPager` options to `false`. ```js // ... .tablesorterPager({ savePages: false, // ... }); ``` The `pager_savePages` is only meant for the pager widget; you're...

Hi @rnlambert7! Honestly I don't remember why the `widthFixed` was documented as being removed, but is still in place. I have a feeling that I removed it, and it broke...