Beta
The options for including a button in CustomForm.
export interface ButtonOptions { disabled?: Observable<boolean> | boolean; tooltip?: Observable<string> | Observable<UIRawMessage> | string | UIRawMessage; visible?: Observable<boolean> | boolean;} Copy
export interface ButtonOptions { disabled?: Observable<boolean> | boolean; tooltip?: Observable<string> | Observable<UIRawMessage> | string | UIRawMessage; visible?: Observable<boolean> | boolean;}
Optional
Whether or not this button is disabled.
The tooltip for this button, shown when hovering the button.
Whether or not this button is visible.
The options for including a button in CustomForm.
Source