umangenius-logo
U Man Genius docs
Scripting tips & tricks

Dynamic Choice & MultiChoice

JT
Jacques TUR

Dynamic Choice

Dynamic Choice fields return either text or numbers corresponding to the IDs of records. However, it is not possible to directly access the selected records. To retrieve them, you can use the following method:

Accessing the Record:

var selectedRecord := record('my Table', number('Dynamic Choice'));

Dynamic Multi Choice (DMC)

For a Dynamic Multi Choice, you can retrieve an array of records based on the selected elements:

Retrieving Selected Records:

var selectedRecords := for i in numbers('Dynamic Multi Choice') do
record('my Table', i);
end;

Adding or Removing a Selection in a DMC

To programmatically add or remove a selection in a DMC, use numbers() to manage the selected values. For example:

Adding a Record to the Selection:

var currentSelection := numbers('Dynamic Multi Choice');
currentSelection := array(currentSelection, [newRecordID]);
'Dynamic Multi Choice' := currentSelection;

Removing a Record from the Selection:

var currentSelection := numbers('Dynamic Multi Choice');
'Dynamic Multi Choice' := currentSelection[!= recordIDToRemove];
These methods allow precise control over the records selected in a Dynamic Multi Choice field.

Want to print your doc?
This is not the way.
Try clicking the ⋯ next to your doc name or using a keyboard shortcut (
CtrlP
) instead.