or
"<
li
>${Date}</
li
>"
$(
"#div"
).kendoValidator({ validateOnBlur:
false
})
wnd = $("#details")
.kendoWindow({
title: "Customer Details",
modal: true,
visible: false,
resizable: false,
width: 960
}).data("kendoWindow");
http://demos.kendoui.com/web/grid/editing-popup.html
I have been able to display the buttons by adding the anchor tags copied for the buttons from a normal popup window, but it isn't bound to any events although it displays the buttons, it won't fire the save or cancel actions.
Here is my template code:
<
script
type
=
"text/x-kendo-template"
id
=
"editClientTemplate"
>
<
div
id
=
"details-container"
>
<
h2
>#= borrowerFirstName # #= borrowerLastName #</
h2
>
<
em
>Contact ID #= contactId #</
em
>
</
div
>
<
a
class
=
"k-button k-button-icontext k-grid-update"
href
=
"\\#"
><
span
class
=
"k-icon k-update"
></
span
>Update</
a
>
<
a
class
=
"k-button k-button-icontext k-grid-cancel"
href
=
"\\#"
><
span
class
=
"k-icon k-cancel"
></
span
>Cancel</
a
>
</
script
>