| Availability |
Odoo Online
Odoo.sh
On Premise
|
| Lines of code | 666 |
| Technical Name |
am_web_split_view |
| License | OPL-1 |
| Website | https://erpgoals.com |
| Versions | 18.0 19.0 |
| Availability |
Odoo Online
Odoo.sh
On Premise
|
| Lines of code | 666 |
| Technical Name |
am_web_split_view |
| License | OPL-1 |
| Website | https://erpgoals.com |
| Versions | 18.0 19.0 |
Split View of List and Form Views
ERP Goals — www.erpgoals.com
This feature introduces a thoughtfully designed dual-pane layout where users can view the record list and corresponding detail form side by side within the same screen. By eliminating the need to switch between separate list and form views, it reduces context switching and accelerates everyday operations. Users can quickly select items from the list while instantly reviewing or editing detailed information in the adjacent pane. This structure streamlines create, read, update, and delete (CRUD) workflows, minimizes navigation overhead, and improves overall usability—especially in data-intensive environments where speed and clarity are essential.
Key Features
- Universal Compatibility: Create a custom split view for any target model that already utilizes standard list and form XML views.
- Debug Mode Integration: Easily create or remove split views directly via the form view wizard while in developer mode.
-
Advanced XML Definitions: Manually define split views in your module's XML by referencing specific
list_view_refandform_view_refIDs. - Dynamic Layout Control: Seamlessly flip orientation between horizontal and vertical views or resize panes to suit your screen. Simply double-click the resizer to instantly reset the layout to a balanced 50/50 split.
Custom XML Implementation Example:
<record id="hr_department_split_view" model="ir.ui.view">
<field name="name">hr.department.split.view</field>
<field name="model">hr.department</field>
<field name="arch" type="xml">
<split list_view_ref="hr.view_department_tree" form_view_ref="hr.view_department_form"/>
</field>
</record>
<record id="hr.hr_department_kanban_action" model="ir.actions.act_window">
<field name="view_mode">split,list,form</field>
<field name="view_ids" eval="[(5,0,0),
(0, 0, {'view_mode': 'split', 'view_id': ref('hr_department_split_view')}),
(0, 0, {'view_mode': 'list', 'view_id': ref('hr.view_department_tree')}),
(0, 0, {'view_mode': 'form', 'view_id': ref('hr.view_department_form')})]"
/>
</record>
How it Works
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