Display number of entries next to Date Area in Calendar View - lotus-domino

I'm trying to complete a request in Domino Notes 11.x.
We have got an a view which is displayed as a calendar view, this works fine however the request is to be able to display the number of entries for a day, ideally next to the Date Area or if not, anywhere else so the end user see's the number of entries.
I hope some Domino/Notes Guru could give me advise to if this is possible and and/or guide me how to achieve this.
thank you all
If needed I will update my question with some more details and screenshots

Related

MS Access only showing one result

I'm working on a MS Access application but have encountered an issue.
I've tried searching around, however, haven't had any luck so I've come here!
I created a multiple items form and have a search button which activates the query it's linked to. This all works fine and all the right information is returned, however, only one record displays at a time.
Say there are 5 results I have to use the record selector to scroll through them each individually despite there being heaps of room left on the form.
None of my other multiple item forms do this.
Any help is appreciated.
Always the way - post on here and finally work it out.
The answer was to change it to a continuous form if anyone else ever has this issue!

focus on current record selected

i am working on a dynamic database which must be extremely professional and user friendly for the "non-access" users..
I am not sure if any code exists for this or if it is capable but I need to put a focus or highlight the record in a form (in a table type view) to emphasise with great details that the user is currently on that record. the little Arrow on the record selector is not enough.
My first choice is that the record currently beign used remains in black colour or perhaps even enlarges whicle the other records in the rows (above and below) are greyed or faded so that it is blatently obvious that they are not selected but are available.
I would greatly appreicate any advice..
Thanks
I googled 'access forms change current row indicator' and the first result was http://access.mvps.org/access/forms/frm0047.htm which looks pretty good (although maybe not very supportable).
The problem with what you want to do is that Access doesn't do that easily; Access does a lot of things for you at the price of accepting the way it does them. When you want to change that you will have problems.
Cheers -

Sharepoint Calendar Color Coding

I have used this tutorial to color the events in the calendar based on two scenarios (internal & external): Color-Code Events on a SharePoint Calendar
The problem occured in the calendar webpart whereas I cant see all the events that are filled in the events.
Any idea to fix the webpart view..
I've used this same tutorial with much success.
You don't provide too much detail in your question, but as a starting point I would double check this first:
Make sure you have "Yes" selected under "Require that this column contains information"
Double check that any existing items in the calendar list have the "Category" column filled in - you can do this easily from the data sheet view (as they show in the tutorial) or from Excel or Access. If you had a lot of old entries it would be an easy thing to miss.
If the above doesn't help. Perhaps you can share some more detail of the setup or screen shots so we can figure out what you're missing :-)

Report studio: keep list in one page in pdf

I have this list on a report that exceeds one page because it has a lot of rows. Instead of having it split into two pages I want the second part of the list to appear next to the first part, all in the same page. Both in html and pdf.
Disabled break and horizontal pagination in the list properties but did not work. Also put page break in report properties. It did improve the amount of rows that fit now but I still need to put one half of the list next to each other because I do not want it to split in many pages. Maybe there is another solution you know of.
Thanks for your help!
I'll post this from what I got to contribute if someone is looking for something similar.
If you know the amount of rows you can use a "newspaper" style report. Look it up, you'll find it simple.
Another option is to use repeater tables. I went for this one because my amount of rows was dinamic.
Hope this helps.
Regards

Need to set Tapku Calendar to only have certain dates selectable?

I'm using the Tapku Library (http://developinginthedark.com/posts/iphone-tapku-calendar-markers) to implement a Monthly Calendar View for my application, but the thing is that I only want certain days in the Calendar View to be selectable, based on an array of NSDates that I have.
I suppose I could handle this in didSelectDate, but I'm hoping that there is a easier way to go about this. Any advice?
Actually, if what you want is for only certain days to be selectable, then using didSelectDate is at first kind of pointless, because that day was already selected.
What you actually need, according to your description of the problem, is for only certain "day squares" respond to touch input , AND, somehow convey to the user that a certain "day square" is disabled or unselectable, by giving the square a disabled look.
The problem is that Tapku Calendar doesn't allow you to do that, unless you go about and adapt the source code to your liking.
So, going back to didSelectDate, as it seems it's your only choice of handling user selection/interaction right now... the user is going to be able to select dates that you ideally didn't want to be selectable, so you should manage that appropriately to your situation.