Hi all, I have an ajax call to some values and I use the ...select().as_dict in my controller so that I can return a dict to process the results in my view. Now I realize that I need these values to be sorted. As a dict (..select().as_dict) is not ordered, how can this be accomplished?
Once I needed something like this but I used the Collections module and the OrderedDict, but this is different. I need some opinions on the best approach for this. Thanks. Regards Kevin --