Provide Table.Cell
See original GitHub issueReplace original plain object.
const columns = [{
title: "xxx",
className: "classNameOfColumn",
render: () => <Table.Cell className="" onClick={} rowSpan={}>xxx</Table.Cell>,
}]
@yesmeck what do you think?
Issue Analytics
- State:
- Created 6 years ago
- Reactions:1
- Comments:5 (5 by maintainers)
Top Results From Across the Web
<table>: The Table element - HTML - MDN Web Docs - Mozilla
The HTML element represents tabular data — that is, information presented in a two-dimensional table comprised of rows and columns of cells ......
Read more >Configuring the cells for your table - Apple Developer
Cells provide the visual representation of your table's rows. For most tables, you provide only one or two different types of cells. Design...
Read more >Tables in HTML documents
The HTML table model allows authors to arrange data -- text, preformatted text, images, links, forms, form fields, other tables, etc. -- into...
Read more >HTML Table Padding & Spacing - W3Schools
Cell padding is the space between the cell edges and the cell content. By default the padding is set to 0. To add...
Read more >Using CSS "display: table-cell" for columns - Senktec
.container { display: table; } .column { display: table-cell; }. to give us a grid layout (I'm also adding a border to make...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
现在感觉 Reactabular 这种能自定义 component 的方式灵活性更好 https://reactabular.js.org/#/table/overriding-default-elements
One problem if we provide
Table.Cell
, consider following situation:If use
Table.Cell
in the first column, we can not insert the expand icon the first column any more.