ebs.confirm

(FintechOS Studio 20.2.1 and later)

IMPORTANT!  
This function is deprecated. Use ebs.confirmAsync instead.

Displays a modal window with two buttons (a confirmation window).

Syntax

Copy
function ebs.confirm(options: IEbsConfirmOptions, yesFunction: Function, noFunction: Function): void;
 
Parameter Type Description
options IEbsConfirmOptions Settings for the title, message, and button labels.
yesFunction (optional) function Callback function to run when pressing the confirmation button.
noFunction (optional) function Callback function to run when pressing the rejection button.

Type Aliases

Examples