Forum Discussion
I tried playing with addDetailRecordBtn but could not get it to work.
I would also like to:
- Remove the edit pencil at the top
- On some pages, remove the save and new button only, not the other two (save, cancel)
Thanks.
- DavidRascon3 years agoQrew Trainee
Hi Team...
May somebody explain step by step how apply the procedure to hide native Save and Cancel Buttons on Mobile app?
The explanation made above it's very complicated to understand it for beginners.
I will appreciate any help.
Thank you!
------------------------------
David Rascon
------------------------------- MarkShnier__You3 years ago
Qrew Legend
I don't know if you are referring to the Mobile App from the App store or the web mobile interface, but either way, I don't think it's possible any more.
------------------------------
Mark Shnier (Your Quickbase Coach)
mark.shnier@gmail.com
------------------------------- DavidRascon3 years agoQrew Trainee
This procedure showed by Geoffrey Harmuth Above: (Still trying to hide buttons)
Thanks Dan, so I figured it out. so for those of you that want to know what the code is to remove the buttons on mobile, here we go:
$("div.btn-form-footer.btn-form-container-3btns").hide();
//removes full footer buttons in mobile
$("div.btn-form-header.btn-form-container-3btns").hide();
//removes full header buttons in mobile
$("div.ui-btn.ui-btn-up-s.ui-btn-inline.ui-shadow.ui-btn-corner-all.ui-fullsize").hide();
//removes both save and save and new buttons in the header, but leaves cancel.
I cant figure out how to just remove the "save and add new" button without also removing the "save" button.
Hope this helps someone save some time!
------------------------------
David Rascon
------------------------------