Hello,when i add a tooltip to a textbox it does not fire the keypress event. 
<div id="example">    <input class="k-textbox"                  title="Hello!"                  data-role="tooltip"                  data-auto-hide="false"                  data-position="top"                  data-bind="events: { show: onShow, hide: onHide, keypress: onKeypress }"/>    <div class="box-col console-section">        <h4>Console</h4>        <div class="console"/>    </div></div><script>    var viewModel = kendo.observable({        onShow: function() {            kendoConsole.log("event :: show");        },        onHide: function() {            kendoConsole.log("event :: hide");        },        onKeypress: function() {            kendoConsole.log("event :: key press");        }    });    kendo.bind($("#example"), viewModel);</script> 
After removing the tooltip, the keypress event is working as expected.
removed lines:
data-role="tooltip"data-auto-hide="false"data-position="top"Dojo Example that demonstrates this problem: http://dojo.telerik.com/AhigA
Could you be so kind to help us with this issue.
Kind Regards,
Bert