Re: set focus on a field
Reply #1 –
@Eroll use the following code below👇 and place it in the ClientEvents of the field.
$( document ).ready(function() {
$("#ctrl-progress").focus();
});
Please replace "progress" with the name of the field you want to focus on.
Note: that ctrl-progress is the id of my field name called progress.