Tuesday, December 28, 2021
3 changes · master
Enhancements to existing features
Website editors now get clearer visual feedback when dragging content snippets, including grab cursors, snippet titles, and previews for items like countdowns, charts, maps, forms, and social embeds. This makes page building easier to understand and helps users place content with more confidence.
Original PR description
Description of the issue/feature this PR addresses: Current behavior before PR: Desired behavior after PR is merged: -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
The website editor now makes it clearer how to add or move page sections by using better cursors, thumbnails, and previews. This helps users understand the editing flow more quickly and build website pages with less confusion.
Original PR description
*web_editor In the website editor, snippets can be dragged and dropped onto the page. However, user tests have shown that clients do not always understand the drag and drop feature. In this commit, we improve the drag and drop flow by: - changing the cursor at key moments, - adding thumbnails to all snippets, blocks, columns, etc., - adding a preview to all snippets, - other minor visual adaptations. Old PR with previous iteration of the code: #70408 task-2431469
Grid views are improved for reporting use cases with clearer display of negative values, optional totals, and a Today shortcut. Grouped grid views now load more efficiently by reducing repeated server calls, improving responsiveness for users working with sectioned data.
Original PR description
PURPOSE Now that the grid view is to be used beyond timesheet/forecast for reporting on stock quantities, several improvements are required to improve its UI: -> color/style indicator on value/cell for null or negative values -> option to hide/show column/line totals, totals are irrelevant in some context (ex: on forecasted quantities for each day of the week) We also want to fix the performance issue linked to the 'section' option. SPEC 1. If the value of the cell is negative, display the value in red 2. Add an option on <grid> to hide column/line totals. 3. Fix the performance issue with section = 1 4. Add a button "today"(Same behavior than on the gantt view) TASK 2031148