interface ModalFactory
An interface that contains methods for creating modal views, defined by the renderer.
interface ModalFactory;
Notes
- An object of this type is assigned to RenderContext.modalFactory, which is used by
appmethods that display modal views, as well as Activity when using thedialogrendering mode.
Type members
interface ModalFactory.DialogController static
An interface for a class that manages a modal dialog view.interface ModalFactory.AlertDialogController static
An interface for a class that manages a modal alert dialog view.interface ModalFactory.ConfirmDialogController static
An interface for a class that manages a modal confirmation dialog view.interface ModalFactory.MenuController static
An interface for a class that manages a modal (dropdown) menu view.
Instance members
buildDialog
A factory method that returns an instance that implements the DialogController interface, for the provided view.buildAlertDialog
A factory method that returns an instance that implements the AlertDialogController interface, using the provided dialog options.buildConfirmDialog
A factory method that returns an instance that implements the ConfirmDialogController interface, using the provided dialog options.buildMenu
A factory method that returns an instance that implements the MenuController interface, using the provided menu options.
