I'm having the situation where when I check items in the combo box it orders the comma separated selected value according to the order of the items in the drop down. So for example.
If I have the following dropdown:
[] A
[] B
[] C
And I then go ahead and first tick B then C and then A. The selectedvalue then shows A,B,C and not B,C,A. Which means that for some reason the values are being sorted after selection. From tests it seems to sort the comma delimited selectedvalue to be in the same order as the order they appear in the dropdown. How can I disable this so that it doesn't sort the selectedvalue? I want to have the selected value read B,C,A in the order I selected them.
If I have the following dropdown:
[] A
[] B
[] C
And I then go ahead and first tick B then C and then A. The selectedvalue then shows A,B,C and not B,C,A. Which means that for some reason the values are being sorted after selection. From tests it seems to sort the comma delimited selectedvalue to be in the same order as the order they appear in the dropdown. How can I disable this so that it doesn't sort the selectedvalue? I want to have the selected value read B,C,A in the order I selected them.