Hi,
Why is there no valueTemplate for the combobox component ? This is a must have. It is available in the DropDownList but not in ComboBox...
So withing the combobox, I can customize the itemTemplate but I want the value text to be the same as the item text.
Actually, for each item, I concatenate several string representing different attributes of the object.
I want to be able to display the same information when the item is selected (ValueTemplate).
For example, consider an object :
country = {
code: US
longCode: United-Stated
}
I want to be able to display "United-States - US", both in the list and in the value when the item is selected.
Thanks in advance.