I have a form view which looks like this :
the xml looks like this :
<notebook>
<page>
<group string="In case of student employee or intern">
<field name="immatriculation" attrs="{'readonly':True}"/>
<field name="studentStatus" attrs="{'readonly':True}"/>
<field name="studentQuestionnaire" attrs="{'readonly':True}"/>
<field name="studentOtherjobs" attrs="{'readonly':True}"/>
</group>
</page>
</notebook>
I would like to increase the width of these fields so that All text (e.g. Confirmation of Student Status (Mandatory Internship) ) comes in a single line. I tried below but didnt see any changes in width :
<field name="studentStatus" attrs="{'readonly':True}" style="width:200px"/>
What is the right way to change the width of these fields inside a group?

