I have textbox whose visibility is controlled by value selected in telerik dropdown. Say if value selected is yes then textbox is visible else it hides. Now when value in dropdown set to Yes i am not able to set focus to that textbox. Only on pressing 'Tab' key focus moves over there but not as soon as textbox appears. I have tried this code:

function OnDropDownChange(e){
if ($(this).val() === "Y") {

        $("#txtID").show();
        $("#txtID").focus();            
}
}

Any help will be appreciated.

有帮助吗?

解决方案 2

$("#txtID").show(400, function() {
    $(this).focus();
});

其他提示

Try this it can be work:

$('#txtID').show('slow', function() {
 $(this).focus();
});

Reference

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top