no display of certain select list options on Month view?

sorry about too many questions…

I made select list custom field with 5 options (with no units).
I don’t want to display events with some options on month view because they are routine schedules, but want to display on day and week view.

Is it possible?

thanks in advance…

and one more question…

tooltip was shown in month view.
I 'd like to display tooltip on week view because I want to see full text of field in case of short time range.
And Can I display tooltip with field 1 + field 2, just like event_text in event templates

I don’t want to display events with some options on month view
Can be done pretty easy in case of separate scheduler, but in case of plugin it will require complicated changes in the existing code.

just like event_text in event templates
Yep, you can use the same template to define tooltips, just set template value as

return "<span title='"+event.text+"'>" + event.text "</span>"

content of title attribute will be used as tooltip. You can combine multiple values here.

return "<span title='"+event.text+" "+event.some_property+"'>" + event.text "</span>"