Hello,
Does anyone know how to clear an epiComboBox in a ui customization? I’ve tried:
thing.Text = “” as well as changing the datasource.
I’m just wanting to clear out any selected item on a checkbox checked event.
Hello,
Does anyone know how to clear an epiComboBox in a ui customization? I’ve tried:
thing.Text = “” as well as changing the datasource.
I’m just wanting to clear out any selected item on a checkbox checked event.
Clear the field by clearing the EpiBinding.
EpiDataView edvJobHead = (EpiDataView)oTrans.EpiDataViews(“JobHead”);
edvJobHead.dataView[edvJobHead.Row][“FieldName”] = string.Empty;
That worked, thanks!
can’t get this to work. clearing EpiCombo box after value change of another combobox