Passa al contenuto
Menu
È necessario essere registrati per interagire con la community.
La domanda è stata contrassegnata
1 Rispondi
9585 Visualizzazioni

I is possible to use Qweb template in calendar view? I want to modify it a bit, but all I can do is just add new fields to be showed in calendar item, like this - ```field1, field2, field3...```

Is there any better way to customize calendar view, like you can with kanban view by using Qweb templating engine?

For example if I use like this:

        <record model="ir.ui.view" id="view_calendar_service_work_calendar">
            <field name="name">Service Works Calendar</field>
            <field name="model">calendar.service.work</field>
            <field name="priority" eval="1"/>
            <field name="arch" type="xml">
                <calendar string="Service Works" date_start="start_time" color="employee_id" date_stop="end_time" mode="week">
                    <field name="name"/>
                    <field name="employee_id"/>                                     
                </calendar>

               <template>

                   <t t-name="something"></t>

              </template>
            </field>
        </record>  

This will throw error:

 Uncaught TypeError: Cannot read property 'type' of undefined 

http://localhost:8090/web_calendar/static/src/js/web_calendar.js:414

As a matter of fact, if I use anything other than field tag, it will throw that error. I can't even use div tag. So it seems you can't style calendar at all?

Avatar
Abbandona
Risposta migliore

You cannot have that kind of customization when it comes to the calendar view.

The calendar view is based on this library: http://dhtmlx.com/docs/products/dhtmlxScheduler/

So if you want to modify how it looks, you will have to modify the way Odoo interacts with that library and the way it renders events. You can find it in web_calendar

Avatar
Abbandona
Post correlati Risposte Visualizzazioni Attività
0
set 15
4328
2
set 23
15008
1
gen 19
8704
1
apr 15
7103
5
mar 15
14468