I have two combo boxes set up in a configurator. In some instances, I need to overwrite the second combo box with the selected value from the first combo box and make the second combo box read only. To do this, I have a function set up to evaluate the condition and set the Inputs.combobox2.Value = Inputs.combobox1.Value when needed. Both combo boxes use Dynamic Lists to show the drop down options (in this instance, both drop downs can only have a max of 2 options). The function sets the value to the same options from the dynamic list.
I’m running into a problem with showing the description of the second combo box when it is set via the function. When I try to pull back Inputs.combobox2.Description, nothing is returned; however, if I pull back Inputs.combobox2.Value, it shows the value that is set via the function.