Split Layout View | Resizable List Form View | Master Detail View
by Steven Marp https://apps.odoo.com/apps/modules/browse?repo_maintainer_id=512936
Odoo
$ 20.99
| Availability |
Odoo Online
Odoo.sh
On Premise
|
| Odoo Apps Dependencies |
•
Invoicing (account)
• Discuss (mail) |
| Lines of code | 275 |
| Technical Name |
sm_split_layout_widget |
| License | OPL-1 |
| Website | https://apps.odoo.com/apps/modules/browse?repo_maintainer_id=512936 |
| Versions | 17.0 18.0 19.0 |
| Availability |
Odoo Online
Odoo.sh
On Premise
|
| Odoo Apps Dependencies |
•
Invoicing (account)
• Discuss (mail) |
| Lines of code | 275 |
| Technical Name |
sm_split_layout_widget |
| License | OPL-1 |
| Website | https://apps.odoo.com/apps/modules/browse?repo_maintainer_id=512936 |
| Versions | 17.0 18.0 19.0 |
Master Detail View for Odoo
Turn a normal Odoo list view into a side by side workspace. Users can select one row,
view the record form instantly, edit fields, and keep context without opening many tabs.
Demo Video
See Split Layout View in Action
Split Layout
Open record details beside the list with one click.
Resizable Panel
Adjust left and right panels for dense data entry.
Main Feature
Left List, Right Form
Give users a clean master detail layout for faster review, edit, and navigation.
Easy Setup
Enable With js_class
Add the view class to any compatible Odoo list view.<list js_class="tree_form_view">
<field name="name"/>
<field name="partner_id"/>
</list>
Split Layout View Widget
Overview
sm_split_layout_widget adds a split layout master-detail workflow to Odoo 17.0 backend list views.
Users can browse records in a left-side list and edit the selected record in the right-side form without opening a new page.
Covered Apps
The widget can be used on compatible Odoo list views, including:
- Sales Orders and Quotations
- Purchase Orders and RFQs
- Customer Invoices and Vendor Bills
- Inventory Transfers
- Manufacturing Orders
- CRM, Contacts, Projects, and custom models
Features
- Left list and right form split layout.
- Master-detail record navigation.
- Real-time form refresh when another list row is selected.
- Resizable split panels.
- Demo Sales menu for easy video recording and testing.
- Reusable list view class named tree_form_view.
Technical Scope
View Widget
- tree_form_view list view class
Demo View
The module adds a demo menu in Sales:
Sales > Orders > Split Layout Demo
This demo action opens Sales Orders with js_class="tree_form_view" so the split layout is ready for screenshots and app store videos.
Reusable Widget
Add the split layout class to any compatible Odoo 17.0 list view:
<tree js_class="tree_form_view"> <field name="name"/> <field name="partner_id"/> <field name="state"/> </tree>
Installation
- Copy sm_split_layout_widget into an Odoo addons path.
- Restart Odoo.
- Update the Apps list.
- Install Split Layout View Widget.
Command-line install or update:
python3 ~/odoo/odoo-18/odoo-server \ -c ~/odoo/conf/unotek.conf \ -d uno_db_fresh \ -u sm_split_layout_widget
Usage
- Install the module.
- Open Sales > Orders > Split Layout Demo.
- Select any order row in the left list.
- Edit the order from the right form panel.
- Drag the splitter to resize the list and form panels.
Compatibility
- Odoo 17.0.0
- Community and Enterprise editions
Changelog
17.0.1.0.0
- Initial Odoo 17.0 release.
- Added split list and form master-detail view.
- Added Sales demo action and menu.
Odoo Proprietary License v1.0 This software and associated files (the "Software") may only be used (executed, modified, executed after modifications) if you have purchased a valid license from the authors, typically via Odoo Apps, or if you have received a written agreement from the authors of the Software (see the COPYRIGHT file). You may develop Odoo modules that use the Software as a library (typically by depending on it, importing it and using its resources), but without copying any source code or material from the Software. You may distribute those modules under the license of your choice, provided that this license is compatible with the terms of the Odoo Proprietary License (For example: LGPL, MIT, or proprietary licenses similar to this one). It is forbidden to publish, distribute, sublicense, or sell copies of the Software or modified copies of the Software. The above copyright notice and this permission notice must be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Please log in to comment on this module