Beta
The options for including a dropdown in CustomForm.
export interface DropdownOptions { description?: Observable<string> | string | UIRawMessage; disabled?: Observable<boolean> | boolean; visible?: Observable<boolean> | boolean;} Copy
export interface DropdownOptions { description?: Observable<string> | string | UIRawMessage; disabled?: Observable<boolean> | boolean; visible?: Observable<boolean> | boolean;}
Optional
The description of the dropdown, shown in the UI.
Whether or not this dropdown is disabled.
Whether or not this dropdown is visible.
The options for including a dropdown in CustomForm.
Source