Heim > Artikel > Web-Frontend > JavaScript-Dialog jsdialog
Funktion ShowCallBack(opt) {
opt.obj.close();
}
Funktion ShowAlert()
{
var pop=new txooo.ui.Popup({ contentType:4,isReloadOnClose:false,width:340,height:100});
pop.setContent("title","Beispiel für eine Warnmeldungsbox");
pop.setContent("alertCon", "Inhalt des Alarmdialogfelds");
pop.setContent("callBack", ShowCallBack);
pop.setContent("parameter", { id: "divCall ", str: „Die Zeichenfolge, die nach dem Klicken auf OK angezeigt wird", obj: pop });
pop.build();
pop.show();
}