-
Notifications
You must be signed in to change notification settings - Fork 61
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
How to remove border table? #12
Comments
Borders can be removed but this is not via the You can specify the border display in the top-level containers There is a bug when disabling the borders though, which I've just found. The right border directive is ignored if you choose not to display borders. |
An alternative that I found was the following: var defaultStyle = {
flex: (_a = this.props.weighting, (_a !== null && _a !== void 0 ? _a : 1)),
justifyContent: "stretch",
textAlign: (_b = this.props.textAlign, (_b !== null && _b !== void 0 ? _b : "left")),
fontSize: (_c = this.props.fontSize, (_c !== null && _c !== void 0 ? _c : (this.props.isHeader === true ? 14 : 12))),
// borderRight: includeRightBorder && "1pt solid black",
wordWrap: "break-word",
whiteSpace: "pre-wrap"
}; |
Hi, i tried using includeLeftBorder, includeTopBorder, includeRightBorder and includeBottomBorder for TableBody but borderTop still appears.
|
i found that when i check file TableBody.js line 39 and 41. did you forget the condition of includeTopBoder? var TableBody = (function (_super) { |
Hi, thanks for your pdf code: thanks though for replying to the issue! |
I still seem to get a border for the rows (not sure if it is the top or the bottom). |
To remove all borders you need to install in TableHeader, TableBody: And in TableCell, DataTableCell:
|
Hello, can we remove the border table with props style? I tried but not work.
The text was updated successfully, but these errors were encountered: