Click or drag to resize

IViewManager.ShowYesNoCancelPopup Method

Shows "Yes"/"No"/"Cancel" dialog.

Namespace:  Resto.Front.Api.UI
Assembly:  Resto.Front.Api.V9 (in Resto.Front.Api.V9.dll)
Syntax
C#
bool? ShowYesNoCancelPopup(
	string title,
	string message,
	string yesBtnText = null,
	string noBtnText = null,
	string cancelBtnText = null
)

Parameters

title
Type: System.String
Dialog title.
message
Type: System.String
Message text.
yesBtnText (Optional)
Type: System.String
Yes button text.
noBtnText (Optional)
Type: System.String
No button text.
cancelBtnText (Optional)
Type: System.String
Cancel button text.

Return Value

Type: Nullable<Boolean>
true if "Yes", false if "No", null if "Cancel".
See Also