Can we remove system generated button in rollbase. If Yes than what is the step to remove these button.
Example -
We creates a login page in rollbase.There are two fields user-name and password.We add a button submit.
But the form contains 3 more buttons like save & synchronize, save and cancel button.Now we want to remove these buttons.We want only submit button on login page .
Hi Tyagi,
We can hide the buttons using JavaScript.
To do that at an application level navigate to the Application's overview (Goto Application Setup > Your Application > More Options > Header and Footer
Add the following script to the footer:
<script>$('input[value="Save"]').hide();</script>
Flag this post as spam/abuse.
When you say you created a login page, do you mean a Portal page of type Login. The Save & Synchronize is available when editing/designing pages. Can you share screenshots of where you would want these buttons to disappear?
Regardless, Rollbase does not give configurable settings to enable/disable or hide the system buttons like Save, Save & Synchronize, etc.
Thanks Chandrasekhar. I have added this script to the footer but stil save button is showing on login page.
The value should be " Save " a space each around the save text.
When we add a new record through login page there is only one button which is created by me not other buttons.