質問

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