cancel
Showing results for 
Search instead for 
Did you mean: 

Filtered values of a Column in the Table are not in order

Former Member
0 Kudos

Hello,

I had filter functionality for a column, but the resulted order displayed after filtering is not in a correct order. How to achive filtering in proper ordered.

i got the TableFilter.java from below link https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/5036338f-6283-2b10-5697-e09fbe20...

if i had a column with values (a, ht ,tt, at, bt, t, tt, at, ta, tah, ttt)

If I filter the column with letter 't' .The filtering is working but the displayed result is not in a order.

Resulted Filter order displayed using the above link: at, t, ht, at, bt, tt, ta, tt tah, ttt

which doesn't give any order. it would be a good if the resulted filter values dispaly in a order.

Order should be like

1) all rows with first letter t

2) all rows with second letter t

3) all rows with third letter t

4) so on till the last letter is t in the value

good resulted order: t, ta, tah, tt, tt, ttt, at, at, bt, ht

How to get a proper order of result when filtered a column?

Thanks

Mahaboob Hussain

Edited by: Maha Hussain on Aug 6, 2009 5:47 PM

Edited by: Maha Hussain on Aug 6, 2009 5:47 PM

Edited by: Maha Hussain on Aug 6, 2009 8:22 PM

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Change the TableFilter class such that it sorts the node according to your sort order on each filter action.

Armin

Former Member
0 Kudos

Armin,

It would be very helpful to me, if you could suggest how & where to make necessary changes in the TableFilter.java class.

Thanks for your reply

Maha