Issue 3302308: Add SORT_NUMERIC flag when sorting rows.
In some cases, tables with more than 10 rows are displayed in the wrong order. ksort() is applied without a flag, causing "row_10" to be sorted between "row_1" and "row_2". Solution, add a SORT_NUMERIC flag.