Hi, Meghana wrote: > > Collections.sort(dataModel.getRowData(), comparator);
You can't sort a single row, this is what dataModel.getRowData() returns. Try somthing like Collections.sort((List)dataModel.getWrappedData(), comparator); Regards, Volker -- Don't answer to From: address! Mail to this account are droped if not recieved via mailinglist. To contact me direct create the mail address by concatenating my forename to my senders domain.

