I would like to type in and add a new value into a ComboBox.
It does not seem possible to type anything into a ComboBox.
How could I do this?
Currently I am reading data from a SharePoint list into a collection which is then used as the data source for the ComboBox.
To add a new value, I am thinking I would need to add the value into a text box and patch this data to the list. Then refresh the datasource, read to the collection and re-bind to the ComboBox to show the new value.
How to ensure I am not adding a duplicate also?
Trying to add it to the collection and then identify & pull this new value out and add it to the list could get complex.
Any help/code appreciated.
Thank you