Would like to see an override for the standard behavior of the UltraCombo when dealing with Selecting Multiple Values via checked items.
If I understand correctly the datavalue is driving the order in which the list is being generated & comma separated.
'The checked items are assigned to the editors value property.
'Setting EditorValueSource to checked Items returns a Generic object List(List<object>) consisting of the DataValue of each checked Item.
We would want to track the order that the items are being selected within the dropdown. If the user decides that an item should be unchecked, then the list should correct the order the text values are displayed.
We could then take the ultracombo.text property to get the data I need, without looping through the checkedrows collection or the Generic Object List, as the textual list would be in the proper order. However, if I had to loop through the Generic List, then that would be fine, as well, if the items were in the order the user selected them.
What we would Like to Happen:
SYS_COMMENTS,SYS_TITLE,SYS_NAME,LOG1
User Clicks Row and the Text is built based on those clicks.
What is happening:
SYS_NAME,SYS_TITLE,LOG1,SYS_COMMENTS
User clicks Data row index: 8,3,0,6
But the list is recreated to indicated order: 0,3,6,8
Reference case [CAS-197560-M1J9H1].