Activity Pickers (3.7-preview)
Overview
This section explains how to change the activity picker used in the workflow editor. Currently, two activity picker types are supported: Accordion (default) and Treeview.
Accordion
To use the Accordion activity picker, use the following line.
builder.Services.AddScoped<IActivityPickerComponentProvider, AccordionActivityPickerComponentProvider>();
When using nested activity categories, the accordion picker defaults to returning the first category within the string. You are able to change this behaviour by specifying your own CategoryDisplayResolver.
Treeview
To use the TreeView activity picker, add the following line.

Last updated