Availability |
Odoo Online
Odoo.sh
On Premise
|
Odoo Apps Dependencies |
Discuss (mail)
|
Community Apps Dependencies | Show |
Lines of code | 991 |
Technical Name |
omux_split_view |
License | OPL-1 |
Website | https://www.linkedin.com/in/sveltware |
Versions | 17.0 18.0 |
Availability |
Odoo Online
Odoo.sh
On Premise
|
Odoo Apps Dependencies |
Discuss (mail)
|
Community Apps Dependencies | Show |
Lines of code | 991 |
Technical Name |
omux_split_view |
License | OPL-1 |
Website | https://www.linkedin.com/in/sveltware |
Versions | 17.0 18.0 |
Purchase Note
- Compatible with Odoo Community, Enterprise + Omux Backend
- Works with all official Odoo S.A. applications, including Enterprise apps
Features
- Configure Split Mode: Choose horizontal or vertical
- Drag-and-Drop Resizing: Easily adjust panels
- Real-Time Sync: Instant updates across views
- Integrated Navigation: Remember session behavior
- Developer Friendly: Integrate callable with window actions
- Robust Performance: Stable in heavy-data environments
- Fully Compatible: Work with the list view of any app
Use Cases
- Simultaneous Data Review: View lists and details side-by-side
- Efficient Editing: Update records without switching views
- Enhanced Navigation: Maintain context in dense data
- Time-Saving Workflows: Perfect for sales, CRM, and inventory
Latest Update
- Version 18.0.1.3.0
Benefits at a Glance
Efficient, intuitive, and secure—here’s what you gain by using our module.
1. Enhanced Productivity
Experience a remarkable workflow boost as split view lets you manage list and form views side-by-side, significantly reducing time spent switching screens.
2. Real-Time Synchronization
Enjoy seamless, instantaneous data updates between list and detail views, ensuring every change is immediately reflected for consistent accuracy.
3. Intuitive User Experience
Navigate effortlessly with a user-friendly interface designed to minimize the learning curve while maximizing ease-of-use and operational efficiency.
4. Flexible Customization
Customize your interface using Window action context, configuring layout direction and auto-activation for a perfectly tailored work environment.
Effortless Configuration
Experience a powerful blend of adaptive design and customizable settings. Effortlessly switch between vertical and horizontal layouts to optimize your workspace, while fine-tuning options like layout direction and auto-activation of Split View through the Odoo action context.
Flexible Layout
Also mention the dynamic layout, which can adapt to various core versions—from Odoo Community, Enterprise, to ours (Omux and its supporting modules)—paving the way for numerous future expansion possibilities.
Frequently Asked Questions
If the answer to your question is not on this page, please contact our customer Support Team
You can change the default layout (vertical or horizontal) in the module’s settings popup or via the Odoo action context, allowing you to tailor the view to your preference. Here's some example action context:
-
{'ux_props': { 'direction': 'vertical' }}
-
{'ux_props': { 'direction': 'horizontal' }}
-
{'ux_props': { 'split_list': 'auto', 'direction': 'vertical' }}
Absolutely. You can set "auto turn on split view" in the Odoo action context so that whenever you open a specified view, the module automatically splits the screen. Here's some example action context:
-
{'ux_props': { 'split_list': 'auto' }}
-
{'ux_props': { 'split_list': false }}
-
{'ux_props': { 'split_list': 'auto', 'direction': 'vertical' }}
Yes. You can programmatically set or override the Odoo action context in your custom Python code to enable or configure the Split View (e.g., default orientation, auto-activation) for specific actions or modules. Here's a example:
def action_open_split_view_act_window(self): return { 'name': 'Split View on Sale Order #6', 'type': 'ir.actions.act_window', 'res_model': 'sale.order', 'view_mode': 'list,form', 'context': { 'split_res_id': 6, 'ux_props': { 'direction': 'vertical' }, }, }
Absolutely. When performing a soft reload (or navigating between views), the module preserves your current Split View state. You won’t lose the open record or panel layout unless you explicitly turn off Split View or perform a full page reload. Here's two way to excec a soft reload:
-
In Python:
return {'type': 'ir.actions.client', 'tag': 'soft_reload'}
-
In Javascript:
env.services.action.doAction('soft_reload')
All native Odoo operations remain fully functional. You can still perform searches, create or delete records, and import/export data without losing the split view context.
Validated Use Cases
↳ Toggle the mode through a dedicated button, verify that this button only appears when the user is viewing a list view.
↳ When enabled, when clicking on a record in the list view, verify that the system will open the record in a panel on the right side of the list view.
↳ When disabled, when clicking on a record in the list view, verify that the system will switch to the detail screen of the form view as the default Odoo behavior.
↳ When closing the right panel in split view mode, the left panel's state remains unchanged, and the right panel is hidden.
↳ Verify that the functionality does not work with editable inline list view.
↳ When hovering over the splitter, it should be highlighted, and when dragging the mouse left or right, the width of the corresponding panels should be adjusted accordingly.
↳ Verify that double-clicking the splitter will evenly distribute the size between the list view panel and the form view panel.
↳ Verify that the splitter functionality works correctly in RTL (right-to-left) mode.
↳ When deleting a record in the list view that is currently open in the form view, verify that the list view automatically moves the cursor to the first record in the list and updates the form view panel accordingly.
↳ When deleting a record in the form view that is currently highlighted in the list view, verify that the list view automatically moves the cursor to the first record in the list and updates the form view panel accordingly.
↳ In the form view panel within split view mode, any operation that results in a data change for the record in the system should cause the corresponding row in the list view to be updated accordingly.
↳ In the form view panel within split view mode, when creating a new record or duplicating a record, the corresponding record should become the highlighted record in the list view.
You May Also Like!
Technical Help, Queries & Support
Please feel free to contact for any suggestion, issue & queries
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