Gets a reference to the dialog's input element.
Namespace: MindFusion.Common.UI
File: InputDialog.js
JavaScript Copy Code |
---|
get input() {} |
HTMLElement
The 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"; |