confirm( )

Displays a Confirm dialog with the specified message and OK and Cancel buttons in the M-Business Client browser.

Interface

PODSWindow

IDL definition
PODSBoolean confirm(PODSString question);
JavaScript synopsis
window.confirm(question)
C synopsis
PODSBoolean PODSconfirm(
  PODSWindow* window,
  PODSString question
);
Parameters
  • window   The PODSWindow object.

  • question   [in] The message to display in the dialog.

Returns

PODS_TRUE

If the user clicked the OK button.

PODS_FALSE

Otherwise. (The user clicked the Cancel button.)

See also

alert( ), prompt( )