Hi,
how to set focus to kendo TextBox widget when a kendo window opens?
I tried the following but no luck. The widget is selected and focused for a fraction of second and then selection and focus is magically removed.
$(document).ready(function () {
setTimeout(function () { $("#position").data("kendoTextBox").focus() }, 200)
});