Skip to content

Instantly share code, notes, and snippets.

@Pierry
Created September 30, 2013 20:27
Show Gist options
  • Save Pierry/6769748 to your computer and use it in GitHub Desktop.
Save Pierry/6769748 to your computer and use it in GitHub Desktop.
Utilizando o calendário da Kendo e capturando o item selecionado.
<!-- Add Calendar and Events Divs-->
<div id="events"></div>
<div id="calendar"></div>
$("#calendar").kendoCalendar({
change: onChange,
navigate: onNavigate
});
function onChange(){
$('#events').text("Change:: " + kendo.toString(this.value(), 'd'));
}
function onNavigate(){
$('#events').text("Navigate");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment