I added a tree view to a page of my notebook element. While adding data to the tree view it is saving in the database, and it is also displayed in the tree view. When I reload the page, the data in the tree view vanishes and it's empty.
The code looks like this:
<field name="arch" type="xml">
<notebook colspan="4">
<page string="Block Area">
<field colspan="4" name="block_line" nolabel="1" mode="tree,form">
<tree string="Block">
<field name="blockname" />
<field name="size" />
<field name="activefrom" />
<field name="activethru" />
<field name="active" />
</tree>
</field>
</page>
</notebook>
</field>