I want to sort the store (ArrayStore and GroupingStore) in alphabetical order and in the case of INSENSITIVELY. I use the singleSort () method, but it sorts the case sensitively.
For example,
data = ['c', '1', 'A', 'a', 'C'] output = ['1', 'A', 'C', 'a', 'c'] myoutput = ['1', 'a', 'A', 'c', 'C'] or [['1', 'A', 'a', 'C', 'c'] // This is what I want
Any suggestion on how to achieve this?
extjs store
user427969
source share