I have a custom processing screen and would like to clear out values of other fields on my filter based on a combobox changing. Iโve have CommitChanges set to true on my combobox but canโt get the text box values to clear.
I can set a breakpoint and see that the values are changing to null but they stay on the screen until I change the combobox back to Pallet then back to Truck and back to Pallet again. But the first time the UI doesnโt show the change.
Here is my FieldUpdated logic:
protected virtual void _(Events.FieldUpdated<PMTaskToAssignFilter, PMTaskToAssignFilter.assign> e) {
PMTaskToAssignFilter row = e.Row;
if (row.Assign != AssignTypes.Truck) {
row.DeliveryNumber = null;
row.TrailerNumber = null;
}
}