Kendo UI DatePicker inside Twitter Bootstrap

HTML

<button type="button" id="disableAll">Try to disable everything</button>
<div id="wrapper" style="margin:2em;">
    <input type="text" value="text input" />
    <div id="editor" contenteditable="true" style="border:1px solid #999;height:100px;margin:2em 0;">editable div</div>    
</div>

JavaScript

$(function(){
    $("#disableAll").click(function(e){
        $("#wrapper").attr('disabled', 'disabled');
    });
});