perland Posted December 12, 2013 Report Share Posted December 12, 2013 Hello, Is there a way to add a save button to a long from so that a user can click save at multiple locations before clicking on the submit button at the bottom of the form? Thank You. Quote Link to comment Share on other sites More sharing options...
MayMusic Posted December 14, 2013 Report Share Posted December 14, 2013 You can add a checkbox to the table as completed and then create couple submission button all over the page just the last button should be customized and should call a function which will check this checkbox so you know the page is completed. To get the submit button code you can use firebug https://getfirebug.com/ It should be something like : <input id="Submit" type="submit" name="Submit" class="cbSubmitButton" onmouseover="cbButtonHover(this,'cbSubmitButton_hover');" onmouseout="cbButtonHover(this,'cbSubmitButton');" value="Submit"> Last one should also have onclick function <input id="Submit" type="submit" name="Submit" class="cbSubmitButton" onmouseover="cbButtonHover(this,'cbSubmitButton_hover');" onmouseout="cbButtonHover(this,'cbSubmitButton');" value="Inleveren" onclick="Chkbox()"> Chkbox is the name of the function which you call to check the checkbox which can go to the header of the page <script> Chkbox(){ document.getElementById('checkboxID').checked=true; } </script> Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.