Save button on top

I have a short form with an image to be uploaded. When the user is uploading a big image the save button moves way down in the form. Is there a way to move (or add an additional) save button on top of the form instead of at the bottom (only)???

Thanks.

You may use jQuery to move, see: https://api.jquery.com/category/manipulation/dom-insertion-outside/.

I put these rows in the Client Scripts->Table Specific->Edit-Page->Startup Script:

$(“#tavolsag”).before('

MentésMégsem
');

The #tavolsag is a DIV, created in the Server Events->Table Specific->Edit Page->Page Datarendering:
$header=“#evho {visibility: hidden;}

”.$this->ev->CurrentValue." “.$honapok[$this->ho->CurrentValue-1].”
“.$this->ev->CurrentValue.”-“.$this->ho->CurrentValue.”
";

The two buttons appear there, but when click on them, nothing happens.

What is “tavolsag” element? Please explain it in more detail. In addition, please press [F12] from your browser to check whether any Javascript error message.

“tavolsag” is a DIV element in the header (I created it in the Edit Page->Page Datarendering). It is in a fixed position DIV.
I did it, because there are more than 30 fields on the edit page and I would like that, the user shouldn’t scroll down to the submit and cancel button, these buttons “would float” in front of the fields.

There is no Javascript error message in my browser.

If you add a submit type button by yourself, and the button is not inside the form in that current page, then it will do nothing.

Ah, that is so true. Thank you.