Skip to Content
Odoo Menú
  • Registra entrada
  • Prova-ho gratis
  • Aplicacions
    Finances
    • Comptabilitat
    • Facturació
    • Despeses
    • Full de càlcul (IA)
    • Documents
    • Signatura
    Vendes
    • CRM
    • Vendes
    • Punt de venda per a botigues
    • Punt de venda per a restaurants
    • Subscripcions
    • Lloguer
    Imatges de llocs web
    • Creació de llocs web
    • Comerç electrònic
    • Blog
    • Fòrum
    • Xat en directe
    • Aprenentatge en línia
    Cadena de subministrament
    • Inventari
    • Fabricació
    • PLM
    • Compres
    • Manteniment
    • Qualitat
    Recursos humans
    • Empleats
    • Reclutament
    • Absències
    • Avaluacions
    • Recomanacions
    • Flota
    Màrqueting
    • Màrqueting Social
    • Màrqueting per correu electrònic
    • Màrqueting per SMS
    • Esdeveniments
    • Automatització del màrqueting
    • Enquestes
    Serveis
    • Projectes
    • Fulls d'hores
    • Servei de camp
    • Suport
    • Planificació
    • Cites
    Productivitat
    • Converses
    • Validacions
    • IoT
    • VoIP
    • Coneixements
    • WhatsApp
    Aplicacions de tercers Odoo Studio Plataforma d'Odoo al núvol
  • Sectors
    Comerç al detall
    • Llibreria
    • Botiga de roba
    • Botiga de mobles
    • Botiga d'ultramarins
    • Ferreteria
    • Botiga de joguines
    Food & Hospitality
    • Bar i pub
    • Restaurant
    • Menjar ràpid
    • Guest House
    • Distribuïdor de begudes
    • Hotel
    Immobiliari
    • Agència immobiliària
    • Estudi d'arquitectura
    • Construcció
    • Gestió immobiliària
    • Jardineria
    • Associació de propietaris de béns immobles
    Consultoria
    • Empresa comptable
    • Partner d'Odoo
    • Agència de màrqueting
    • Bufet d'advocats
    • Captació de talent
    • Auditoria i certificació
    Fabricació
    • Textile
    • Metal
    • Mobles
    • Menjar
    • Brewery
    • Regals corporatius
    Salut i fitness
    • Club d'esport
    • Òptica
    • Centre de fitness
    • Especialistes en benestar
    • Farmàcia
    • Perruqueria
    Trades
    • Servei de manteniment
    • Hardware i suport informàtic
    • Sistemes d'energia solar
    • Shoe Maker
    • Serveis de neteja
    • Instal·lacions HVAC
    Altres
    • Nonprofit Organization
    • Agència del medi ambient
    • Lloguer de panells publicitaris
    • Fotografia
    • Lloguer de bicicletes
    • Distribuïdors de programari
    Browse all Industries
  • Comunitat
    Aprèn
    • Tutorials
    • Documentació
    • Certificacions
    • Formació
    • Blog
    • Pòdcast
    Potenciar l'educació
    • Programa educatiu
    • Scale-Up! El joc empresarial
    • Visita Odoo
    Obtindre el programari
    • Descarregar
    • Comparar edicions
    • Novetats de les versions
    Col·laborar
    • GitHub
    • Fòrum
    • Esdeveniments
    • Traduccions
    • Converteix-te en partner
    • Services for Partners
    • Registra la teva empresa comptable
    Obtindre els serveis
    • Troba un partner
    • Troba un comptable
    • Contacta amb un expert
    • Serveis d'implementació
    • Referències del client
    • Suport
    • Actualitzacions
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Programar una demo
  • Preus
  • Ajuda

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Comptabilitat
  • Inventari
  • PoS
  • Projectes
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
Ajuda

Calendar Month View - More information on entry?

Subscriure's

Get notified when there's activity on this post

This question has been flagged
calendar
3 Respostes
3411 Vistes
Avatar
Kent

Right now, when I look at the Calendar app in Month view, it shows the entries each with one line listing the truncated (to fit the one line) Meeting Subject and the Starting Time.

Is it possible to add more information and have the entry be, maybe, 2 or 3 lines long?

For example, I'd like the full Meeting Subject shown multi-line, as well as the duration of the meeting, rather than the Starting Time.

Week view entries are multi-line to fit the size of the entry based on the duration but still only show the Meeting Subject and no other information.

Thanks!

0
Avatar
Descartar
Avatar
Kent
Autor Best Answer

I found a way to stretch the box itself using CSS but not change the text. However, I am told by a nearby dev that it's possible. If I manage to do it, I'll post code here.

For now, here is the CSS that manually stretches the box. (It's not dynamic and can only used a fixed px height. If someone else can make it work dynamically and wrap the text, that would be AWESOME.)

/* this one is the container on all calendar views */

.fc-view-container * {

    min-height: 60px !important;

    overflow-y: visible !important;

}

There are also these two which do something, but I can't get it figured out:

/* this one is just month view event box */
.fc-day-grid-event * {
min-height: auto !important;
text-wrap: wrap !important;
}


/* this one does something */
.o_event_title {
/*overflow-wrap: break-word;*/
/*text-wrap: wrap;*/
/*border-radius: 5px;*/
/*padding: 2px;*/
/*line-height: 10px;*/

/*height: auto !important;*/
/*min-width: 600px !important;*/
/*min-height: 100px !important;*/
/*overflow-x: visible !important;*/
/*overflow-y: visible !important;*/
/*height: 400px !important;*/
}


AND HERE is how I got the text to change. I found it in the base code and it's even commented to show you what to do... like the Odooers knew someone would want to do it.




0
Avatar
Descartar
Avatar
Klaus-Dieter Gundermann
Best Answer

I would be happy to see a multiline display in calendars too.

btw I can't find a documentation which fields will be shown (my calendar view only displays the model name and id)

0
Avatar
Descartar
Kent
Autor

See my edited answer above. I pasted in a screenshot of some code (for some reason, pasting in code never works for me.)

Avatar
Diego Arenas (dare)
Best Answer

Hello Kent,

Unfortunately this is not possible in standard. You will only see a few characters of the meeting's title, the duration of the meeting and the slot as you mentioned. 

However, you can quickly see all information just by clicking on the meeting. 

Hope this help ! 

Diego

0
Avatar
Descartar
Kent
Autor

Actually.... I got it to work. Here's how.

Kent
Autor

See my answer above.

Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Registrar-se
Related Posts Respostes Vistes Activitat
Jalali-calendar- odoo18
calendar
Avatar
Avatar
1
de jul. 25
1620
Internal Team Grouping for Calendar Solved
calendar
Avatar
Avatar
2
de juny 25
1935
Odoo 15 community: Calendar view enddate shows wrong date
calendar
Avatar
Avatar
1
de maig 25
3135
How to hide "everybody's calendar" from certain users or groups
calendar
Avatar
Avatar
1
d’abr. 25
4703
Calendar event notifications reach mobile app exactly at 1804 hrs daily. ... odd
calendar
Avatar
0
de des. 23
2354
Community
  • Tutorials
  • Documentació
  • Fòrum
Codi obert
  • Descarregar
  • GitHub
  • Runbot
  • Traduccions
Serveis
  • Allotjament a Odoo.sh
  • Suport
  • Actualització
  • Desenvolupaments personalitzats
  • Educació
  • Troba un comptable
  • Troba un partner
  • Converteix-te en partner
Sobre nosaltres
  • La nostra empresa
  • Actius de marca
  • Contacta amb nosaltres
  • Llocs de treball
  • Esdeveniments
  • Pòdcast
  • Blog
  • Clients
  • Informació legal • Privacitat
  • Seguretat
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo és un conjunt d'aplicacions empresarials de codi obert que cobreix totes les necessitats de la teva empresa: CRM, comerç electrònic, comptabilitat, inventari, punt de venda, gestió de projectes, etc.

La proposta única de valor d'Odoo és ser molt fàcil d'utilitzar i estar totalment integrat, ambdues alhora.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now