InputDialog.noModal constructor
Creates a non-modal (non-blocking) dialog. See InputDialog for the arguments.
Implementation
InputDialog.noModal(
String buttontype,
String htmlTitleText,
List<String> inputTextLabelInfo,
List<List<String>> comboInfo,
List<String> defaultInputTexts,
List<int> sizes,
List<String> isChecked,
BaseDialogCloseCallback closeCallback,
bool alternateRowColor,
List<String> buttonLabels)
: super.noModal(closeCallback) {
init(
buttontype,
htmlTitleText,
inputTextLabelInfo,
{COL1: comboInfo},
{COL1: defaultInputTexts},
sizes,
isChecked,
alternateRowColor,
buttonLabels);
}