Forum Discussion
AdamKeever1
6 years agoQrew Commander
The basic syntax to hide page elements is $(".PAGE_ELEMENT").hide() and here are some examples of removing various elements of a Quick Base page using javascript:
$(".IconOnly").hide();
$("#navTop").hide();
$("#tablesMenuBarWrapper").hide();
$("#TableNPageBarSeparator").hide();
$("#pageNavBar").hide();
$("#saveButton").hide();
$("#cancelButton").hide();
$("#pageNavBarActions").hide();
$("#pageNavBarTray").hide();
$("#footerSaveButton").hide();
$("#footerCancelButton").hide();
$("#formFooterButtonsContainer").hide();
$("#formFooterButtonsContainer").hide();
$("#saveMenu").hide();
$("#footerSaveMenu").hide();
$("#saveAction").hide();
$("#.qb-splitbutton-menubtn").hide();
$(".Icon.DownArrowWhite").hide();
$("#formFooterButtonsContainer").hide();
$("#signInLink").hide();
There are some interesting script based solutions for various use cases here that you may find helpful:
@Dan Diebolt's Cut&Paste Database
He crafted the well known image on load technique to inject js into a Quick Base page:
how to set-up the image onload technique
You need to share your formula if you want people to help with syntax errors.
------------------------------
Adam Keever
------------------------------
$(".IconOnly").hide();
$("#navTop").hide();
$("#tablesMenuBarWrapper").hide();
$("#TableNPageBarSeparator").hide();
$("#pageNavBar").hide();
$("#saveButton").hide();
$("#cancelButton").hide();
$("#pageNavBarActions").hide();
$("#pageNavBarTray").hide();
$("#footerSaveButton").hide();
$("#footerCancelButton").hide();
$("#formFooterButtonsContainer").hide();
$("#formFooterButtonsContainer").hide();
$("#saveMenu").hide();
$("#footerSaveMenu").hide();
$("#saveAction").hide();
$("#.qb-splitbutton-menubtn").hide();
$(".Icon.DownArrowWhite").hide();
$("#formFooterButtonsContainer").hide();
$("#signInLink").hide();
There are some interesting script based solutions for various use cases here that you may find helpful:
@Dan Diebolt's Cut&Paste Database
He crafted the well known image on load technique to inject js into a Quick Base page:
how to set-up the image onload technique
You need to share your formula if you want people to help with syntax errors.
------------------------------
Adam Keever
------------------------------