Class SelectDialog extends ModalBaseDialog

Simple dialog with a select element

Source : file dialogs/selectDialog/SelectDialog.js at line 35

Constructor

new SelectDialog ( options )

The constructor

Source : file dialogs/selectDialog/SelectDialog.js at line 49

Parameters

Name Type Description
options BaseDialogOptions or Object

An Object with the needed options. See DialogOptions class.

Public getters and setters

readonly get contentHTMLElements : Array of HTMLElement

Get an array with the HTMLElements that have to be added in the content of the dialog. Can be overloaded in the derived classes

Source : file dialogs/selectDialog/SelectDialog.js at line 79

readonly get title : String

Get the title of the dialog. Can be overloaded in the derived classes

Source : file dialogs/selectDialog/SelectDialog.js at line 71

Public methods

createContentHTML ( )

Create all the controls needed for the dialog. Overload of the base class createContentHTML

Source : file dialogs/selectDialog/SelectDialog.js at line 58

onOk ( )

Overload of the BaseDialog.onOk ( ) method.

Source : file dialogs/selectDialog/SelectDialog.js at line 87

Private properties

#selectControl : SelectControl

The select control

Source : file dialogs/selectDialog/SelectDialog.js at line 42