Field Validation

Good afternoon,

We have a UBAQ that is used by our Procurement Team via a Deployed Dashboard, we have incorporated a UD Field that uses a drop down list of Employees that the kit is assigned to when ordered/received.
What we are trying to do, is set the drop down field to only allow the names that are within the drop down list to be used. I.E. prevent the users from typing in what ever they want, and only able to use what is in the list, however, after multiple attempts to lock this down, we have not succeeded.

Any help/advice would be appreciated.

Many thanks,

Milan

Within the Dashboard, you should be able to do (via Customization) something like:
private static void epiUltraComboBestCase_GotFocus(object sender, System.EventArgs args)
{
// ** Place Event Handling Code Here **
epiUltraComboBestCase.LimitToList = true;
}

private static void epiUltraComboBestCase_ValueChanged(object sender, System.EventArgs args)
{
	// ** Place Event Handling Code Here **
	epiUltraComboBestCase.LimitToList = false;
}

You may need to use a csm.get statement similar to:
stsGrid = (EpiUltraGrid)csm.GetNativeControlReference(“742783a7-a7f4-4d7e-a2db-a2f150851c52”);
in order to get the control you need to actually apply the events to.