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

TableCell should support colSpan and rowSpan attributes #1190

Open
LukasFritzeDev opened this issue Feb 17, 2025 · 0 comments
Open

TableCell should support colSpan and rowSpan attributes #1190

LukasFritzeDev opened this issue Feb 17, 2025 · 0 comments
Labels
enhancement New feature or request

Comments

@LukasFritzeDev
Copy link
Member

LukasFritzeDev commented Feb 17, 2025

<Table> / <TableCell>

The <TableCell> component should support the nativ TH Attributes colspan and rowspan.

Current solution:

Use empty columns to fill up row:

    <Table>
      <TableHeader>
        <TableColumn>Titel</TableColumn>
        <TableColumn>Pfad</TableColumn>
        <TableColumn>Fehler</TableColumn>
        <TableColumn>Warnungen</TableColumn>
        <TableColumn>Score</TableColumn>
      </TableHeader>
      <TableBody>
        { ... }
        <TableFooterRow>
          <TableCell>
            <strong>Gesamtbewertung</strong>
          </TableCell>
          <TableCell></TableCell>
          <TableCell></TableCell>
          <TableCell></TableCell>
          <TableCell>
            <strong>{profile.issueSummary?.score}</strong>
          </TableCell>
        </TableFooterRow>
      </TableBody>
    </Table>
@LukasFritzeDev LukasFritzeDev added the enhancement New feature or request label Feb 17, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant