That may be a stupid question and probably easy to do in nuBuilder if you know how...
If globeadmin is logged in, show a certain browse column , if not hide it. This applies to all my browse tables.
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.
Hide browse column
Re: Hide browse column
Martin,
You can't do this using Hash Cookie as you can filtering rows.
But you can get a Browse Form to point to a different Edit Form.
You would need to set up different Access Levels with different Home Pages and Buttons that open different Browse Forms.
Steven
You can't do this using Hash Cookie as you can filtering rows.
But you can get a Browse Form to point to a different Edit Form.
You would need to set up different Access Levels with different Home Pages and Buttons that open different Browse Forms.
Steven
You do not have the required permissions to view the files attached to this post.
-
- Posts: 30
- Joined: Fri Nov 09, 2018 5:42 pm
Re: Hide browse column
Managed to do that with javascript.Martin wrote: If globeadmin is logged in, show a certain browse column , if not hide it. This applies to all my browse tables.
Code: Select all
$('[data-nu-column="6"]').hide();
$('#nuBrowseTitle6').hide();