Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejs
var Confirmation_Win = new canvas.Dialog
	({
		title : 'Dialog Window Title',
		dialogType : 'CONFIRMATION',
		message : 'Detailed confirmation message', 
		yesHandler : function ()
			{
				//Your Ok action goes here
			}, 
	noHandler : function ()
	{
		//Your No action goes here
	}, 
	cancelHandler : function ()
	{
		//Your Cancel action goes here
	}
}); 

...

Code Block
languagejs
var Confirmation_Win = new canvas.Dialog
	({
		title : 'Confirmation',
		dialogType : 'CONFIRMATION',
		message : 'You are about to DELETE two apps. Do you also want to delete their Sub Workspaces?', 
	yesHandler : function ()
	{
		Confirmation_Win.close();
	}, 
	noHandler : function ()
	{
		Confirmation_Win.close();
	}, 
	cancelHandler : function ()
	{
		Confirmation_Win.close();
	}
}); 
Confirmation_Win.show();

...