JSFiddle - React, Tailwind, and code Playground
HTML
<script src="http://cdn.kendostatic.com/2012.2.710/js/kendo.all.min.js"></script>
<link rel="stylesheet" href="http://cdn.kendostatic.com/2012.2.710/styles/kendo.common.min.css">
<link rel="stylesheet" href="http://cdn.kendostatic.com/2012.2.710/styles/kendo.default.min.css">
<input type="text" id="pass" data-bind="value: password, events:{keyup:test}"/>
<button data-bind="events:{ click: reset }">reset</button>
JavaScript
var viewModel = kendo.observable({
password: "",
test: function(){
alert(this.password);
},
reset: function() {
this.set("password", "")
}
});
kendo.bind($("body"), viewModel);