I am trying to put a trigger on a change even for an epiultracombo with a static list. It works when you first click on the value in the list (I see the other field populate), but as soon as you release the mouse click to select the value the other field returns to 0.
I have tried with Text change, value change, and afterfieldchange for the data field and still can’t seem to get it to work.
private void cmbPC_TextChanged(object sender, System.EventArgs args)
{
if(this.cmbPC.Text.ToString() == "Onsite Visit")
{
this.numSeverity.Value = 1;
}
if(this.cmbPC.Text.ToString() == "Warranty")
{
this.numSeverity.Value = 2;
}
if(this.cmbPC.Text.ToString() == "Return")
{
this.numSeverity.Value = 3;
}
if(this.cmbPC.Text.ToString() == "Other")
{
this.numSeverity.Value = 0;
}
}