I'm using an auto complete component and a labelFunction so that user have the ability to search by their name or id. Once the search is completed I'd like to extract the data to a query.
The only problem is that I only need the name or id for the query not both, so I'd like to pull from just the id variable...
Currently if the user types - Joe or if they type - 13
Both would return a result of Joe - 13 via the auto complete component.
I'm using a dash - To separate the results visually. So I'd like to know if theres a way to extract text from a text field up to a certain character in this case a dash.
Thanks