March 2016
Beginner to intermediate
232 pages
4h 29m
English
Now we will create a modeless dialog and see the difference between modal and modeless dialogs. Update the showDialog function as shown here:
function showDialog() {
var html = HtmlService.createHtmlOutputFromFile('Index');
DocumentApp.getUi()
.showModelessDialog(html, 'Greeting');
}Note that the showModalDialog method has been changed to showModelessDialog.
Modeless dialogs do not prevent you from doing other things, such as editing the document, and you can drag the dialog around as shown here:

Read now
Unlock full access