Is there a posibility to declare a template for dataTextField after i choose an element from combobox?
I have a JSON that has 2 elements, LastName and FirstName. When i select a person, i wanna show it in input the LastName and FirstName merged, not one of them.
Is this possible?
[SOLVED]
I managed solving this by modifying the JSON and concatenate "FirstName" with "LastName" into "FirstLastName" and used this as "dataTextField".
My JSON data was generated by php and i managed to do this modification!
Hope somebody will need this!