I have grid in extjs, where in column the value come as 200.00 GB, 12.00 GB, 23.34 GB. When i click on sorting it not shown in proper order like Ascending or decending. Please help me how to show the combination of number and string sorting. Check Image
0
votes
2 Answers
1
votes
This is covered in the documentation: http://docs.sencha.com/ext-js/4-0/#!/api/Ext.data.Field-cfg-sortType
You can provide your own custom sorting method.
0
votes
Try SortTypes
http://docs.sencha.com/extjs/4.0.7/#!/api/Ext.data.SortTypes
sortDir: 'ASC', sortType: 'asInt'
store
look like? – CD..