December 2018
Beginner to intermediate
404 pages
10h 14m
English
Another way to organize content is the notebook element, a container for multiple tabbed sections called pages. These can be used to keep less-used data out of sight until needed or to organize a large number of fields by topic.
We'll add a notebook element to the checkout form, with the list of the borrowed books. After the <group name="group_top"> element added in the previous section, we should include this XML:
<notebook> <page string="Borrowed Books" name="page_lines" > <field name="line_ids" /> </page> </notebook>
In this case , we have only one page in our notebook. To add more, we just need additional <page> sections inside the <notebook> element. The page canvas does not render field labels by default. For ...
Read now
Unlock full access