section('additionalInlineJs') ?> function asyncMessageDialog(title, msg, callback) { var $messageDialog = $("#modalMessage"); $messageDialog.modal('show'); $("#labelTitleMessageDialog").html(title); $("#labelMsgMessageDialog").html(msg); $("#okButton").off('click').click(function () { callback(); $messageDialog.modal("hide"); }); } endSection() ?>