Focus edit-form popup for Telerik MVC Grid

993 Views Asked by At

How can you focus the edit-form Popup for Telerik MVC grid? Solutions that not hack Telerik code are preferred.

1

There are 1 best solutions below

0
On BEST ANSWER

You can use the OnEdit event of the grid, find some input element from the form and focus it. Here is some sample code:

<script type="text/javascript">
function Grid_onEdit(e) {
    var form = e.form;
    $(form).find("input:first").focus();
}
</script>