Hi All,
I want to add a refresh button to the form. How can I do that?
Welcome to the nuBuilder Forums!
Register and log in to access exclusive forums and content available only to registered users.
Register and log in to access exclusive forums and content available only to registered users.
refresh button Topic is solved
-
- nuBuilder Team
- Posts: 4292
- Joined: Sun Oct 14, 2018 6:43 pm
- Has thanked: 71 times
- Been thanked: 444 times
- Contact:
Re: refresh button
In the form's Custom Code, add:
Code: Select all
nuAddActionButton('refreshbutton', nuTranslate('Refresh'), 'nuGetBreadcrumb()');
-
- nuBuilder Team
- Posts: 4292
- Joined: Sun Oct 14, 2018 6:43 pm
- Has thanked: 71 times
- Been thanked: 444 times
- Contact:
Re: refresh button
In globaladmin mode exist beautiful refresh button.
Why disappear when user log in?
How to get it back?
Why disappear when user log in?
How to get it back?
You do not have the required permissions to view the files attached to this post.
-
- nuBuilder Team
- Posts: 4292
- Joined: Sun Oct 14, 2018 6:43 pm
- Has thanked: 71 times
- Been thanked: 444 times
- Contact:
Re: refresh button
Hi,
The refresh button has been introduced to make it easier for admins to refresh a form, especially when designing forms.
What would be your use case for having this button for users?
The following code snippet can be used to add a refresh button for the user:
The refresh button has been introduced to make it easier for admins to refresh a form, especially when designing forms.
What would be your use case for having this button for users?
The following code snippet can be used to add a refresh button for the user:
Code: Select all
if (!nuGlobalAccess()) {
nuAddIconToBreadcrumbHolder('nuRefreshButton', 'Refresh', 'nuGetBreadcrumb()', 'fas fa-sync-alt', '3px');
}
Re: refresh button
Hi,
Thank You for answer.
I found this:
and add in Custom Code > JS > Browse & Edit
It helps dispose of wrong entries in edit form without exit from it.
Have a nice day.
Thank You for answer.
I found this:
Code: Select all
nuAddIconToBreadcrumbHolder('nuRefreshButton', 'Refresh', 'nuGetBreadcrumb()', 'fas fa-sync-alt', '7px');
It helps dispose of wrong entries in edit form without exit from it.
Have a nice day.