JSFiddle - React, Tailwind, and code Playground
by jeremy_wiebe
HTML
<link rel="stylesheet" href="http://cdn.kendostatic.com/2012.2.710/styles/kendo.mobile.all.min.css">
<link rel="stylesheet" href="http://cdn.kendostatic.com/2012.2.710/styles/kendo.common.min.css">
<script src="http://cdn.kendostatic.com/2012.2.710/js/kendo.all.min.js"></script>
<div data-role="view">
<a data-role="button" data-bind="enabled: canClick">Hello</a>
</div>
JavaScript
var app = new kendo.mobile.Application();
var model = kendo.observable({
canClick: function() {
return false;
}
});
kendo.bind(document.body, model);