You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
746 B

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <odoo>
  3. <record id="datepicker_options" model="ir.ui.view">
  4. <field name="name">datepicker_options</field>
  5. <field name="model">res.users</field>
  6. <field name="inherit_id" ref="base.view_users_form"/>
  7. <field name="arch" type="xml">
  8. <xpath expr="//page[@name='access_rights']" position="inside">
  9. <h2>Datepicker Demo</h2>
  10. <label for="date"/>
  11. <field name="date" options='{"datepicker": {"calendarWeeks": false}}'/><br/>
  12. <label for="create_date"/>
  13. <field name="create_date" options="{'datepicker':{'calendarWeeks': false}}"/>
  14. </xpath>
  15. </field>
  16. </record>
  17. </odoo>