This module provides a set of functions for generating and managing confirmation dialogs.

Usage

The functions in this module can be accessed using the syntax ix.api.confirm.functionName();

Example

// Example usage: Showing a confirmation dialog with custom settings
let confirmSettings = {
title: 'Confirm Action',
message: 'Are you sure you want to proceed?',
onConfirm: () => { console.log('Confirmed!'); },
onCancel: () => { console.log('Cancelled!'); }
};
ix.api.confirm.show(confirmSettings);

// Example usage: Hiding the currently displayed confirmation dialog
ix.api.confirm.hide();

Index

Interfaces

Functions