Hi,
EDITED
Supposedly if I have the following window action.
<record model="ir.actions.act_window" id="action_profile">
<field name="name">My Profile</field>
<field name="res_model">res.partner</field>
<field name="view_type">form</field>
<field name="view_mode">tree,form</field>
</record>
When a portal user logins, the portal user will only see the res.partner record that is associate with the user account that was login to.
Now I want to have a Form view only, so I remove the tree view from view_type..
<record model="ir.actions.act_window" id="action_profile">
<field name="name">My Profile</field>
<field name="res_model">res.partner</field>
<field name="view_type">form</field>
<field name="view_mode">form</field>
</record>
Inside of display in the form view, it show a empty record.
To simplify, how do I view 1 selected record of an object in form view only.
Sorry i couldnt get you Gavin Yap
I rephrase my questions and title. In short, how do I view 1 selected record in form view only?
Give me your XML code
Drees Far, what xml code u need?