valuelist sorting problem

I have a valuelist called People which is based on the People table. It is set to return id_people to the dataprovider and show name_last, name_first in the field/list. It is also set to sort by name_last, name_first.

If I set the field displaytype to combobox everything is fine, but since the list of people is so big, I set the displaytype to TypeAhead. When that happens, the drop-down list is sorted by id_people and not by name_last, name_first.

Is there anything that I can do about this???

i fixed this in 2.1.2. The order by was generated wrong.
You can fix this youreself also if you want, define the last_name, first_name as first things in the 3 list. So the return value should be defined in the last list.

Yup. That did it. Thanks!!!