Gets a reference to the dialog's input element.
Namespace: MindFusion.Common.UI
File: InputDialog.js
SyntaxJavaScript
Copy Code
|
|---|
get input() {} |
HTMLElement
ExampleThe following code uses the HTMLElement of the InputDialog to change its background:
JavaScript
Copy Code
|
|---|
| var inputDialog = new ui.InputDialog("Continue Game", "Would You Like to Play More?"); inputDialog.input.style.background = "yellow"; |
See Also