or
$("a.inDialog").live("click", function(e){ e.preventDefault(); $(this).after("<div id='openDialog'></div>"); $("#openDialog").kendoWindow({ theme: "blueopal", title: $(this).attr("title"), content: $(this).attr("href"), width: "500px", height: "300px" }).data("kendoWindow"); var window = $("#openDialog").data("kendoWindow"); window.center();});<link rel="stylesheet" type="text/css" href="/public/stylesheets/external/kendoui/kendo.common.min.css" charset="utf-8" ></link><link rel="stylesheet" type="text/css" href="/public/stylesheets/external/kendoui/kendo.kendo.min.css" charset="utf-8" ></link> <script type="text/javascript" language="javascript" charset="utf-8" src="/public/javascripts/external/jquery-1.7.1.min.js"></script><script type="text/javascript" language="javascript" charset="utf-8" src="/public/javascripts/external/kendoui/js/kendo.all.min.js"></script><script type="text/javascript" language="javascript" src="/public/javascripts/external/kendoui/js/kendo.window.min.js"></script>

I have a DataSource that is the data source for two different kendoDropDownList. Is there a way of accessing the data within the data source? The data source is a address block with a reference as a key and value in the drop down. The Address, City, State and Zip are also present in the data source. How would I access that data without having to pull over another set of the data?
Thanks
Randy