Forum Discussion

MikeBlinkhorn1's avatar
MikeBlinkhorn1
Qrew Trainee
6 years ago

Change Save & Close button to ""Submit"" and remove Cancel button

I have created a table for online employment applications and using iframe to show it on our website.  I would like the the page to just have a Submit button at the bottom, without the Cancel button.  And I definitely don't want them to have the option of Save & New.

6 Replies

  • try suffixing your URL with 

    &ifv=1

    Then you will have no save or cancel button at all.

    But then make your own save button with a Formula Rich Text field

    "<a id='saveButton' class='Vibrant Success' onclick='DoSave()' href='#'>WhatEverYouWantYourButtonToSay</a>"

    • WendyShoef's avatar
      WendyShoef
      Qrew Cadet
      Can you call the Save and Keep working?
      Also, will all the automations, webhooks, notifications, etc fire off if you use the DoSave()?
    • QuickBaseCoachD's avatar
      QuickBaseCoachD
      Qrew Captain
      all the automatons etc will fire.  A save is a save is a save.  But I do not have any reliable code to save and keep working on the form with ifv=1
    • MindaMay's avatar
      MindaMay
      Qrew Cadet
      I'm using this and I like it... but I want the user to stay on the bottom of the form after they Save and Close so they will be in the right place for the next step.

      Here's what I have in a Rich Text Formula field:

      "<a id='saveButton' class='Vibrant Success' style='border:1px solid #6BBD57; background-color:#6BBD57' onclick='DoSave()' href='#Anchor'>Save & Close</a>"


      I also built a Rich Text formula field to serve as an anchor:

      "<a name=Anchor></a>"

      It's not working. Any ideas?