Skip to Content
Меню
Вам необхідно зареєструватися, щоб взаємодіяти зі спільнотою.
Це запитання позначене
1 Відповісти
9584 Переглядів

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?

Аватар
Відмінити
Найкраща відповідь

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

Аватар
Відмінити
Related Posts Відповіді Переглядів Дія
0
вер. 15
4328
2
вер. 23
15007
1
січ. 19
8702
1
квіт. 15
7098
5
бер. 15
14467