Hook for custom javascript
That’s right. We only have a couple of people with full access to the bookings. We have 8 rooms and 1 resource that show on the main area. A secondary area has only 2 rooms that are rarely booked and a 3rd location that is “Off site”. We find that useful for tracking some events that get imported to our web page. On Dec 10, 2019, at 15:56, Campbell Morrison cimorrison@users.sourceforge.net wrote: Thanks. That's useful feedback. It may be that a range of solutions is required. At one end, when there's...
Sorry about that. Since we don’t have a lot of rooms, we would not use this feature. We print the weekly report to give staff a quick view of what is coming up. On Dec 10, 2019, at 03:25, Campbell Morrison cimorrison@users.sourceforge.net wrote: I think you may have misread my post. I was pointing at a new feature request for discussion of a week view showing all rooms in an area. I've also got some code in a new branch. It's not the same as your weekly summary and may be satisfying a different requirement,...
No. Sorry, we haven’t. It should be relatively easy. On Dec 9, 2019, at 15:19, Campbell Morrison cimorrison@users.sourceforge.net wrote: See https://sourceforge.net/p/mrbs/feature-requests/410/. https://sourceforge.net/p/mrbs/feature-requests/410/ [feature-requests:#275] https://sourceforge.net/p/mrbs/feature-requests/275/ Weekly Multi-Room View. Status: open Group: Created: Fri Jul 25, 2014 01:51 PM UTC by Anonymous Last Updated: Wed Aug 07, 2019 04:49 PM UTC Owner: nobody I'd like to have the option...
We often get people looking for a specific rooms in the future, so I coded a search for a single room and time slot. It's fairly easy to create a search form and AJAX report for something like this. Our room count is small enough that the day view shows everything.
Check your styles. In our implementation, part of the summary is styled to display on screen and print and part only on screen. The divs for the banner at the top and the navigation bars (Go to week before, etc) are styled with class=screenonly It may be that these divs are not closed properly. Jamie On May 12, 2018, at 01:46, noreply@sourceforge.net wrote: Thanks for this useful code, I added to my MRBS and it works perfectly. Just a simple issue: I can't print the page, it appear only the title,...
Each booking listing is wrapped in <span class=sum_x> ... </span> so you can add styles in mrbs.css.php like span.sum_I {font-weight: bold;} to make all of the entries with type I bold (or any other block styling you want)
You should not add any styling code to the line that displays the cells. The default borders for your MRBS theme are used to show the lines (or not). In Themes/default/styling.inc, line 29 sets the vertical border colours for the main table. In the default theme, this is provided 'out of the box' as: $main_table_body_v_border_color = $body_background_color; i.e. the borders are not visible. I suggest you change this to: $main_table_body_v_border_color = "#ffffff"; Then it will match the horizontal...