> I'm trying to use tablesorter on a dynamically generated table. Most
> of the columns sort fine. However, I'm having issues with the number
> columns...

Victory! I figured out the problem.

I have a tendency to structure my tables like this:

<table>
    <tr>
       <td>
           data!
       <td>
   </tr>
</table>

The reason tablesorter wasn't seeing my number column as a number
column was the whitespace between <td>, my data, and </td>. Once I
closed up the td lines to being one line, it recognized the numbers as
numbers and is now sorting appropriately.

Just wanted to let everyone know, in case they hit the same "gotcha".
Sorter is working great now!

-SZ

Reply via email to