Hi all,
How to get calendar view inside the tabs.
Thanks in advance
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
Hi all,
How to get calendar view inside the tabs.
Thanks in advance
Add an one2many field which contain a calendar view in it.
If calendar view is already defined.
<field name="one2many_field" colspan="4" nolabel="1"
mode="calendar,tree,form" />
If calendar view not defined.
<field name="one2many_field" colspan="4" nolabel="1"
mode="calendar,tree,form">
<calendar>
.
</calendar>
<form>
.
</form>
<tree>
.
</tree>
</field>
thanks
hi atchuthan, as you told i have done. the code is .xml: " " .py (panel.info): 'trainer_ids' : fields.one2many('trainer.profile.info', 'trainer_id', 'Trainer'), and in .py('trainer.profile.info' class): 'trainer_id': fields.many2one('panel.info','Trainer'), I am getting openerp client error when i run i.e: "Error: View type 'calendar' is not supported in One2Many." http://localhost:8069/web/webclient/js?db=demo:3621 Thanks
.xml:
page string="Assignment Schedules" field name="trainer_ids" colspan="4" nolabel="1" mode="calendar,tree,form" calendar string="EM Admin Dashboard" date_start="date1" date_stop="date2" color="name" field name="date1"/ /calendar /field /page
Tạo tài khoản ngay hôm nay để tận hưởng các tính năng độc đáo và tham gia cộng đồng tuyệt vời của chúng tôi!
Đăng ký
me too need this...
Thanks & Regards,