or
var lobTv = $("#linesOfBusiness").kendoTreeView({ select: function (e) { var tree = this; var src = tree.dataItem(e.node); jobOwnerId = src.LobId; isParent = src.HasChildren; }, change: function (e) { appsDataSource.read(); }, dataSource: { transport: { read: { url: apiUrl + "Lob" } }, schema: { model: { id: "LobId", hasChildren: "HasChildren" } } }, loadOnDemand: false, dataTextField: "LobName" });var lobDataSource = new kendo.data.DataSource({ transport: { read: { url: apiUrl + "Lob" } }, schema: { model: { id: "LobId", hasChildren: "HasChildren" } } });var lobTv = $("#linesOfBusiness").kendoTreeView({ select: function (e) { var tree = this; var src = tree.dataItem(e.node); jobOwnerId = src.LobId; isParent = src.HasChildren; }, change: function (e) { appsDataSource.read(); }, dataSource: lobDataSource, loadOnDemand: false, dataTextField: "LobName" });$("#listView").kendoListView({ dataSource: dataSource, selectable: true, template : kendo.template($("#template").html()), change: function (e) { alert('change'); }, dataBound : function () { $(".product").kendoDraggable({ hint: function (element) { return element.clone(); } }); }});this.$('.kendoHourInput').kendoNumericTextBox({ format: '#.0 h'});Uncaught TypeError: Cannot read property 'numberFormat' of nullshim: { ... someLib: { deps: ['globalize'] }}