Skip to main content
3-Newcomer
November 27, 2024
Solved

ThingWorx Grid Widget

  • November 27, 2024
  • 2 replies
  • 644 views

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?

Best answer by wcui

@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;
 }
}
 

2 replies

16-Pearl
November 29, 2024

@VN_10473408 

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?

wcui16-PearlAnswer
16-Pearl
December 10, 2024

@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;
 }
}