Relocate Submit button on form

Add another submit button at the top of the form (add and edit). This will save scrolling on forms with lots of fields and an entry is made or edit made in fields at the top


Is it possible to insert the submit button both at the top and the bottom of the page?

Hi, I need to know how I can click a field in a form/grid and link to a website using the field's value.

Example: 'http://to-a-website.com/ABCCompany' (the field's value = ABCCompany).

Thanks for you help!


I used this code example in the console to move the submit button to the top of the page.

//move the sign up the submit button for the application

//change the view number

$(document).on('knack-view-render.view_1', function(event, view, data) {

$("#view_1 .kn-submit input[type=submit]").insertAfter($("#view_1 .view-header"));

});

Add another submit button at the top of the form (add and edit). This will save scrolling on forms with lots of fields and an entry is made or edit made in fields at the top


I used this code example in the console to move the submit button to the top of the page. 

//move the sign up the submit button for the application

//change the view number

$(document).on('knack-view-render.view_1', function(event, view, data) {

     

    $("#view_1 .kn-submit input[type=submit]").insertAfter($("#view_1 .view-header"));

}); 

Hi, I need to know how I can click a field in a form/grid and link to a website using the field's value.

Example: 'http://to-a-website.com/ABCCompany' (the field's value = ABCCompany).

Thanks for you help!


Is it possible to insert the submit button both at the top and the bottom of the page?