Previously, in order to inject code in the middle of an event handler, you could use the code:
protected virtual void Customer_RowSelected(PXCache cache, PXRowSelectedEventArgs e, PXRowSelected del)
{
// run before the base event
del?.Invoke(cache, e);
// run after the base event
}
With the new event style:
protected virtual void _(Events.RowSelected<Customer> e)
What is the proper way to call the delegate?