dojo.require('dijit.Dialog'); function loading() { underlay = new dijit.DialogUnderlay({'class': 'loading'}); underlay.show(); } function stoploading(){ underlay.hide() } function scoringStarted() { if(this.fullStandby==null) { this.fullStandby = new dijit.Dialog({ title: "Loading...", content: "
Bitte warten
", style: "width: 200px", closable: false, showTitle: false }); // document.body.appendChild(fullStandby.domNode); fullStandby.show(); } fullStandby.show(); } function scoringCompleted() { if(this.fullStandby!=null) fullStandby.hide(); }