JSFiddle - React, Tailwind, and code Playground

HTML

<script src="http://code.jquery.com/jquery-2.0.0.min.js"></script>
<script src="http://cdn.kendostatic.com/2013.3.1324/js/kendo.web.min.js"></script>
		<div id="kendo-bind-test">
			<div>
				<input type="text" data-bind="value: a" />
				<input type="text" data-bind="value: b" />
				<input type="text" data-bind="value: c" />
				<input type="text" data-bind="value: d" />
				<input type="text" data-bind="value: e" />
			</div>

			<input id="kendo-rebind" type="button" value='hi' />
		</div>

JavaScript

var boundElement = null;

			var bind = function() {
				if (boundElement) {
					kendo.unbind(boundElement);
				} else {
					boundElement = $('#kendo-bind-test');
				}
				kendo.bind(boundElement, kendo.observable({
					a: ' ',
					b: '',
					c: '',
					d: '',
					e: ' '
				}));
			};

			$(window).load(function() {
				bind();
			});

			$('#kendo-rebind').click(function() {
				bind();
			});