hi
problem:
I wrote a module and in the form defined the fields. for example: I have some boolean fields that I wrote each of the two fields in a line(in the form view).
but because label of some field's is long, so in the form, label shown in two line :(
how can fix it?
python code:
c_automation_account = fields.Boolean('Create Automation Account')
ins_os = fields.Boolean('Install OS')
------------
xml:
<group colspan="8" col="4">
<field name="c_automation_account"/>
<field name="ins_os"/>
-------------
It is displayed on the form:
Create Automation Account |
Install OS
|
so in "Create Automation Account", "Account" set in other line :(
(this problem when the number of fields increases, it is more evident! )