In bootstrap a project I have used kendo.all.min.js. However, for a couple of selected pages I only need MVVM Integration so I figured I will setup the pages using kendo.all.min.js (https://github.com/telerik/kendo-ui-core).
I include: kendo/kendo.common-bootstrap.core.min.css and /kendo/kendo.core.min.js but the code below gives me the following error: Uncaught TypeError: kendo.observable is not a function
What am I doing wrong?
<div id="app">
<div data-bind="html: test"></div>
</div>
<script type="text/javascript">
"use strict";
var viewModel = kendo.observable({
test: "<span class='label label-success'>test</span>"
});
kendo.bind($("#app"), viewModel);
</script>