I have created a list view in Odoo and the interger always goes to the right while strings are to the left. Is there a keyword I should be using to enable all fields in list view to go to the left? I have tried align, position, gravity, layout but none of these work.
Code:
<record id="helpdesk_ticket_tree_view" model="ir.ui.view">
<field name="name">helpdesk.ticket.tree.view</field>
<field name="view_type">tree</field>
<field name="model">helpdesk.ticket</field>
<field name="arch" type="xml">
<tree string="Helpdesk">
<field name="ticketnumber" position="left" />
<field name="name" />
<field name="res_partner_id" />
<field name="res_users_id" />
<field name="responsible_id" />
<field name="claimdate" />
<field name="groups_id" />
<field name="priority_id" />
</tree>
</field>
</record>
Try this: https://goo.gl/Wz5KEW