Can't see how easily - the user has access to the form and button to run it.
I could clone the first form with that tab missing - but that involves more maintenance work if I update things!
I've tried turning off the display of all the fields on that tab but I still get the empty tab showing.
Any clever ways I can conditionally hide the menu for the tab object via code?
Martin
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.
Can I hide a tab on a form for one user?
Re: Can I hide a tab on a form for one user?
Martin,
Try this..
Steven
Try this..
Code: Select all
if(access_level() != 'globeadmin'){
function nuLoadThis(){
$('#nuMenu0').remove(); //--eg. the first tab
}
}
-
- Posts: 60
- Joined: Fri Oct 26, 2012 8:09 pm
Re: Can I hide a tab on a form for one user?
Brilliant thanks - i keep making everything too Complex!1