-
Notifications
You must be signed in to change notification settings - Fork 782
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
Customizable checkboxes and radio buttons #529
Comments
@Suzanna-Manoj-Williams, sorry, we didnt support this feature, check #497, I will make these component more customizable in |
It will be helpful if the checkbox can be a combination of input and label for the input, like below: Check!! |
@Suzanna-Manoj-Williams surely. |
I've found this feature is implemented in |
haha, yes, This feature has been supported, thanks @hawker000 your remind |
Hi, if (isSelectRowDefined) {
var style = {
width: 30,
minWidth: 30
};
if (!selectRow.hideSelectColumn) {
selectRowHeader = _react2.default.createElement('col', { style: style, key: -1 });
}
} |
@wenom64, there's no any better solution, but you can use css to override it(There were someones did it) |
Too bad.. I don't like My solution for now: <BootstrapTable
tableHeaderClass="table-custom-checkboxes"
tableBodyClass="table-custom-checkboxes"
> stylesheet .table-custom-checkboxes > colgroup > col:first-child{
width: 36px !important;
min-width: 36px !important;
} |
Wow, U are the Best... I'm going to try it. |
Hi,
I would like to customize the checkboxes and radiobuttons with custom class names and styles. Is there a way possible?
The text was updated successfully, but these errors were encountered: