hi all,
I have a form like below, how can I make it work on mobile? Is there a document for it?
1. normal view
2. mobile view
<record model="ir.ui.view" id="assign_manual_quants_form_view">
<field name="name">assign.manual.quants.form</field>
<field name="model">assign.manual.quants</field>
<field name="arch" type="xml">
<form name="Manual Quants">
<group col='4' colspan="4">
<field name='quants_lines' colspan="4">
<tree editable="top" delete="0" create="0">
<field name="lot_id" readonly="1"/>
<field name="on_hand" readonly="1"/>
<field name="reserved" readonly="1"/>
<field name="location_id" readonly="1"/>
<field name="package_id" readonly="1"/>
<field name="selected" />
<field name="qty" attrs="{'readonly':[('selected', '=' ,False)]}" sum="qty"/>
</tree>
</field>
<field name="move_qty" colspan="2" readonly="1"/>
<field name="lines_qty" invisible="1" />
</group>
<footer>
<button name="assign_quants" type="object" string="Confirm" class="oe_highlight" />
<button name="cancel" string="Cancel" class="oe_link" special="cancel" />
</footer>
</form>
</field>
</record>
<act_window name="Manual quants" res_model="assign.manual.quants" src_model="stock.move" view_mode="form" target="new" id="assign_manual_quants_action" />
I am Facing same problem you got any relevant solution for this ?
@Manish Bohra: just solved the 1st problem.
working on the other. maybe make 1 form view for it, but still bug.