apex4x
Version:
The Comprehensive ARIA Development Suite
43 lines (41 loc) • 1.32 kB
JavaScript
$A.import(["Animate", "Dialog"], { defer: true }, function () {
var timeoutDialogDC = $A.setDialog({
role: "Session Timeout",
content: "#dialog-timeout",
className: "modal",
isModal: true,
isAlert: true,
style: { display: "none" },
animate: {
onRender: function (dc, wrapper, next) {
$A.Velocity(wrapper, "transition.slideDownIn", {
complete: function () {
// Running next() is required to continue executing built-in lifecycle methods such as afterRender() when the animation completes.
next();
},
});
},
onRemove: function (dc, wrapper, next) {
$A.Velocity(wrapper, "transition.slideDownOut", {
complete: function () {
// Running next() is required to continue executing built-in lifecycle methods such as afterRender() when the animation completes.
next();
},
});
},
},
afterRender: function (dc) {
$A('#xForm button[type="submit"]').on("click", function (ev) {
alert("Do something.");
dc.remove();
ev.preventDefault();
});
},
});
$A("#triggerId").on("click", function (ev) {
setTimeout(function () {
timeoutDialogDC.render();
}, 4000);
ev.preventDefault();
});
});