Domanda

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.

È stato utile?

Soluzione 2

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

Altri suggerimenti

Try this it can be work:

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

Reference

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top