Subject: | Javascript: duration time column is not sorted numerically |
The time column is not always correctly sorted. This can be reproduced if there are test durations >10s and <10s. Reason is that because of the trailing "s", jquery.tablesorter's default digit parser does not not match and instead the generic text parser is used.
I think a custom parser has to be created here, with a regexp something like /^\d(\.\d+)?s$/, and this parser should be assigned to the 3rd (time) column. If you like, then I can try to create a patch to fix the problem.
Regards,
Slaven