Using javasript I programatically create my dialogs as show below. In the JavaScript I want to append a Close button to the bottom of the content of each dialog. Is this possible?
function kendoDialogCreate(dialogName) {
var dialog =
$("#" + dialogName).kendoWindow({
width: "800px",
title: "",
modal: true,
actions: ["Custom", "Close", "Minimize", "Maximize"],
visible: false,
close: kendoDialogDeactivate,
refresh: kendoDialogRefresh,
error: kendoDialogError
});
//Add close button here???
}