Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

line breaks in table cells #2525

Merged
merged 2 commits into from
Apr 2, 2025

Conversation

FredLL-Avaiga
Copy link
Member

What type of PR is this? (check all applicable)

  • Refactor
  • Feature
  • Bug Fix
  • Optimization
  • Documentation Update

Description

Support line breaks in table cells

Related Tickets & Documents

How to reproduce the issue

import pandas as pd

import taipy.gui.builder as tgb
from taipy.gui import Gui

data = pd.DataFrame(
    {
        "AC": [1, 2, 3],
        "BC": [4, 5, 6],
        "CC": [
            'Lorem ipsum dolor sit amet, consectetur adipiscing elit.\n Quisque porttitor, ante et dictum rutrum, lacus turpis euismod dui, et suscipit nunc dolor in dui.\n Curabitur non elit tellus.\n Praesent sed placerat lorem.\n Nunc eleifend nisl vitae pretium iaculis.\n Donec dignissim, nisl a malesuada varius, risus elit tristique nisi, vitae imperdiet tortor dolor in dolor.\n In leo leo, finibus eget interdum sit amet, tempus maximus nibh.\n Pellentesque quis laoreet velit.\n Phasellus ultricies ligula sit amet ligula mollis placerat.\n Aenean eget iaculis felis.\n Aliquam vehicula rutrum justo a tincidunt.\n In hac habitasse platea dictumst.\n Aliquam volutpat in massa vel sodales.',
            "8",
            """Lorem ipsum dolor sit amet, consectetur adipiscing elit.
            Quisque porttitor, ante et dictum rutrum, lacus turpis euismod dui, et suscipit nunc dolor in dui.
            Curabitur non elit tellus.
            Praesent sed placerat lorem.
            Nunc eleifend nisl vitae pretium iaculis.
            Donec dignissim, nisl a malesuada varius, risus elit tristique nisi, vitae imperdiet tortor dolor in dolor.
            In leo leo, finibus eget interdum sit amet, tempus maximus nibh.
            Pellentesque quis laoreet velit.
            Phasellus ultricies ligula sit amet ligula mollis placerat.
            Aenean eget iaculis felis.
            Aliquam vehicula rutrum justo a tincidunt.
            In hac habitasse platea dictumst.
            Aliquam volutpat in massa vel sodales.""",
        ],
    }
)

with tgb.Page() as page:
    tgb.table(data="{data}", show_all=True)

Gui(page=page).run(title="2524 Line breaks in Table cells")

@FredLL-Avaiga FredLL-Avaiga added 📈 Improvement Improvement of a feature. 🟧 Priority: High Must be addressed as soon 📝Release Notes Impacts the Release Notes or the Documentation in general GUI: Front-End labels Apr 1, 2025
@FredLL-Avaiga FredLL-Avaiga self-assigned this Apr 1, 2025
Copy link
Contributor

github-actions bot commented Apr 1, 2025

Coverage report for ./frontend/taipy

Caution

Coverage does not meet threshold
Statements coverage not met for global: expected >=80%, but got 51.87376725838264%

St.
Category Percentage Covered / Total
🔴 Statements 51.87% 263/507
🔴 Branches 21.61% 67/310
🔴 Functions 14.66% 17/116
🔴 Lines 53.19% 242/455

Test suite run success

7 tests passing in 1 suite.

Report generated by 🧪jest coverage report action from c633ba3

FabienLelaquais
FabienLelaquais previously approved these changes Apr 1, 2025
Copy link
Member

@FabienLelaquais FabienLelaquais left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

Copy link
Member

@FabienLelaquais FabienLelaquais left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👌👌👌

@FredLL-Avaiga FredLL-Avaiga merged commit a0065c4 into develop Apr 2, 2025
133 checks passed
@FredLL-Avaiga FredLL-Avaiga deleted the feature/#2524-line-break-in-table-cells branch April 2, 2025 07:18
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
GUI: Front-End 📈 Improvement Improvement of a feature. 🟧 Priority: High Must be addressed as soon 📝Release Notes Impacts the Release Notes or the Documentation in general
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Build & release process changes
2 participants