itemText instead of value
-
Is it possible to store the text of the selected item in the preset instead of the selected value in the ComboBox?
-
@resonant using the same indexing you're combobox is using to set whatever its setting, you should be able to grab the item text. Store it in an array, or an object.
What are you trying to do specifically?
-
@Chazrox I have a list of numerous items in subcategories within a ComboBox. I don't want to worry about backward compatibility issues when I add items to this list as I update the plugin In the future.
So, I wanted to ask how to save the selected item as text, rather than the CB value.
Or perhaps it would be more accurate to ask what needs to be done about this.