Community Tip - You can Bookmark boards, posts or articles that you'd like to access again easily! X
Is it Possible to adjust the spacing of checkbox (when multiselect is enabled) withing the grid row? Is there any property for this? If not, can this be achieved via CSS?
Solved! Go to Solution.
@VN_10473408 below code can change padding for selection check box inside grid.
@supports (ptcs-style-unit:"PTCS-GRID:core-grid") {
[part=row-selection-checkbox] {
padding: 9px 10px 9px 10px;
}
}
can you share more details how you would like to adjust the spacing of checkbox in Grid widget?
what is the version of your thingworx instance?
@VN_10473408 below code can change padding for selection check box inside grid.
@supports (ptcs-style-unit:"PTCS-GRID:core-grid") {
[part=row-selection-checkbox] {
padding: 9px 10px 9px 10px;
}
}