So i wanna use filter parameters on my processing screen to be used in the processing function without breaking functionality, this is how I’m currently binding the processing function but it can’t take parameters like this:
protected virtual void _(Events.RowSelected<XCRecurringTaskFilter> e)
{
if (e.Row == null) return;
RecTasks.SetProcessEnabled(true);
RecTasks.SetProcessAllEnabled(true);
// this is the line
RecTasks.SetProcessWorkflowAction<XCRecurringTaskMaint>(g => g.GenerateTasks);
}