<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<link href="http://cdn.kendostatic.com/2012.3.1114/styles/kendo.common.min.css" rel="stylesheet" type="text/css"/>
<link href="http://cdn.kendostatic.com/2012.3.1114/styles/kendo.default.min.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
<script type="text/javascript" src="http://cdn.kendostatic.com/2012.3.1114/js/kendo.web.min.js" ></script>
<script type="text/javascript">
$(document).ready(function () {
var comboDataSource= new kendo.data.DataSource({
comboDataSource.add({text: 'Test1', value: 'data1'});
comboDataSource.add({text: 'Test2', value: 'data2'});
comboDataSource.add({text: 'Test3', value: 'data3'});
comboDataSource.add({text: 'Test4', value: 'data4'});
$('#combo').kendoDropDownList({
dataSource: comboDataSource,
var mapListData = $("#combo").data("kendoDropDownList");
mapListData.enable(true);
mapListData.select(function (dataItem) {
if (dataItem.hasOwnProperty('text')) {
if (dataItem.text == "Test3") {
$("#tree").kendoTreeView({
id: 1, text: "System Overview", expanded: true, items: [
id: 2, text: "Natural Hazards", expanded: true, items: [
{ id: 3, text: "Earthquakes" },
{ id: 4, text: "Fires" },
{ id: 5, text: "Weather Warnings"}
id: 6, text: "Resources", expanded: true, items: [
{ id: 7, text: "Depots" },
{ id: 8, text: "Teammates" },
var eventsDataSource = new kendo.data.DataSource({
eventsDataSource.add({name: 'Test1', data: 'data1'});
eventsDataSource.add({name: 'Test2', data: 'data2'});
eventsDataSource.add({name: 'Test3', data: 'data3'});
eventsDataSource.add({name: 'Test4', data: 'data4'});
dataSource: eventsDataSource ,
<div id='combo' style='height:50px;width:400px;'></div>
<div id='tree' style='height:200px;width:400px;'></div>
<div id='events' style='height:200px;width:400px;'></div>