Hallo,
vor dem löschen eines Dokuments in einer xpage, möchte ich per js die Zustimmung des Anwenders einholen. Weil's hübsch aussieht, möchte ich statt JavaScript confirm() bootbox.confirm verwenden.
Leider rauscht das Script einfach so durch und wartet nicht auf die Eingabe des Anwenders. Hat jemand eine Idee, wie man das verhindern kann?
Meine Funktion zum öffnen des bootbox dialogs:
function bootboxConfirm( dlgTitle, prompt ) {
var resultVal ;
bootbox.confirm(
{
title: dlgTitle,
message: prompt ,
buttons: {
cancel: {
label: "abbrechen",
className: "btn-default",
callback: function (result) {
console.log('This was logged in the callback: ' + result);
resultVal = result ;
}
},
confirm: {
label: "ok",
className: "btn-default",
callback: function (result) {
console.log('This was logged in the callback: ' + result);
resultVal = result ;
}
}
},
callback: function() {
resultVal = resultVal ;
}
});
console.log( "resultVal = " + resultVal ) ;
return resultVal ;
}
Meine Schaltfläche zum löschen:
<xp:button value="remove" id="button3">
<xp:eventHandler event="onclick" submit="true"
refreshMode="partial" refreshId="dataTablePeople">
<xp:this.action><![CDATA[#{javascript:PeopleBean.setPerson( person ) ;
PeopleBean.removePerson() ;}]]></xp:this.action>
<xp:this.script><![CDATA[return bootboxConfirm( "Dokument löschen", "Soll die Person und alle zugehörigen Dokumente gelöscht werden?" ) ;]]></xp:this.script>
</xp:eventHandler>
</xp:button>
Danke,
Hubert