Is there a certain trick or a set of procedure to handling sorting list members.
I can control the first creation of list and import the record in sorting order but how does future addition to the list should be done so that they are always alphabetically sorted.
I notice that after the first load, newly added members gets added at the end in alphabetical order but how do we maintain the order of the complete list.
The only option I can think of is deleting the entire list and reloading with correct order every time but that can't be good.