Hi,
I Noticed that supplying a
object does work, but not the 'event' property.
So:
Will not render the title of an edit-event popup to "Boeking".
I use a custom template, as in:
I found a workaround:
In the parse function of the transport.schema object it's possible to define extra functions. They can do extra magic, and called from the template using MVVM bindings. :)
Like this:
Another use for this method:
Hide the save/cancel buttonbar in certain conditions. Like this:
Just my 2 cents!
I Noticed that supplying a
messages.event
So:
messages: {
cancel: "Annuleer",
save: "Opslaan",
today: "Vandaag",
event: "Boeking",
},
I use a custom template, as in:
editable: {
template: $("#editor").html(),
confirmation: "Wilt u deze boeking daadwerkelijk verwijderen?",
resize:false,
},
I found a workaround:
In the parse function of the transport.schema object it's possible to define extra functions. They can do extra magic, and called from the template using MVVM bindings. :)
Like this:
$("span.k-window-title").html("Boeking");
Hide the save/cancel buttonbar in certain conditions. Like this:
$("div.k-edit-buttons").css("display","none");
Just my 2 cents!