Hi,
I would like to know how I can use an event handler on array edt fields of a form since only the first element of the EDT is present inside the form in VS?
For example, with the sorting fields on projTable, I can change the lookup of the sort code 1 by using the following event :
[FormControlEventHandler(formControlStr(ProjTable, SortingGroup_sortingId), FormControlEventType::Lookup)]
public static void SortingGroup_sortingId_OnLookup(FormControl sender, FormControlEventArgs e)
{
// Custom Lookup code
...
}
but how to do the same on the sort code 2 and 3 fields since they don't exist in the form (they are added in runtime) ??
Anyone faced the same kind of requirement?
Thanks
*This post is locked for comments
I have the same question (0)