Page 1 of 1
Hide browse column
Posted: Wed Nov 28, 2018 2:07 pm
by Martin
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.
Re: Hide browse column
Posted: Thu Nov 29, 2018 6:27 am
by admin
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.
bro.PNG
You would need to set up different Access Levels with different Home Pages and Buttons that open different Browse Forms.
Steven
Re: Hide browse column
Posted: Thu Jan 24, 2019 4:15 am
by Martin
Martin wrote:
If globeadmin is logged in, show a certain browse column , if not hide it. This applies to all my browse tables.
Managed to do that with javascript.
Code: Select all
$('[data-nu-column="6"]').hide();
$('#nuBrowseTitle6').hide();
Thanks anyway.