Skip to Content
Menu
This question has been flagged
1 Reply
3040 Views

How to make listview to listview.(i.e If I click one row of the listview record then all the details of the clicked record should be shown into different list.

Eg:

 Listview1:


Name
Course
ABC
Science

Now, if I click on record like ABC the it should show like below table.

XYZ
12th
Address
section B
Avatar
Discard
Best Answer

Hello,

If you are trying to open a new model from tree view of another then you can define first one as view_mode=tree

then to open new view

<act_window
id="act_account_acount_move_line_open_reports"
name="Test"
res_model="model.of.abc"
context="{'default_id': active_id}"
src_model="model.listview1"
view_mode="tree"
key2="tree_but_open"/>


Avatar
Discard