The worker Log table is only sortable on the Log File column.
The sort is not a natural sort so it doesn't actually show the newest entries at top or bottom of the sort.
Helpful columns such as Modified date should be sortable to make it possible to get to the current logs quickly.
Searching through this table is very painful.
to fix this adminlogworkerlist.jsp needs to be updated in lines 127 and 129:
((NmHTMLColumn)vistable.getColumnModel().getColumn(3)).setSortable(false);
should be changed to:
((NmHTMLColumn)vistable.getColumnModel().getColumn(3)).setSortable(true);
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.