Jump to content

Recommended Posts

Posted
Try the re-released 8.5 update, just re-release it with this fix in it

 

Hey Nick, today's commit just has an update to the default.aspx.cs file.. should it be the default.aspx file? :)

Posted

Hmm, it should work, hidefrom goes first in the code, then the show to

 

        private bool isVisible(string showto, string hidefrom)
       {
           if (showto == "All" || isBSAdmin || User.IsInRole("Domain Admins")) return true;
           foreach (string s in hidefrom.Split(new char[] { ',' }, StringSplitOptions.RemoveEmptyEntries))
               if (ADUser.UserName.ToLower().Equals(s.ToLower().Trim())) return false;
               else if (User.IsInRole(s.Trim())) return false;
           foreach (string s in showto.Split(new char[] { ',' }, StringSplitOptions.RemoveEmptyEntries))
               if (ADUser.UserName.ToLower().Equals(s.ToLower().Trim())) return true;
               else if (User.IsInRole(s.Trim())) return true;
           return false;
       }

Posted

"Did we get any further with adjusting the column widths at all fo display as well, or the catagories of resources a la earlier versions?"

 

Whilst not adjusting the column widths directly - assuming Nick doesn't disagree, I added a change earlier to display just the Day/Month on the bookings page and not the year. I've then knocked ~30 pixels off the width of the columns which for me does mean it starts to fit better - although with that shorter width you start to hit issues with truncation so it does need some more work.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...