Hi @Francois_Vongue,
Using load hook in global actions is available from version 8 of forest-express-*.
To populate an enum field in global action (or any type of action), you have to set to 'Enum' the field type and define the enums list:
{
field: 'exampleField',
type: 'Enum',
enums: ['one', 'two', 'three'],
}
Of course, this is to be done in the fields array of your action.
This is described here
Regards