Skip to main content
12-Amethyst
October 18, 2022
Solved

How to move the ExpandCollapeSelection to right in tree grid advanced widget?

  • October 18, 2022
  • 1 reply
  • 1826 views

Hi,

 

I would like to move the ExpandCollapeSelection to right side. Tried with below CSS but didn't get any solution. Also attached video for reference. Need your help ASAP.

 

.tree-toggle::part(tree-toggle-icon){
position:absolute !important;
right:0px !important;
}

#root_ptcsgrid-120-bounding-box::part(tree-toggle-icon){

position:absolute !important;
right:0px !important;

}

Best answer by JU_10321794

he PG

 

you can try this if you are using thingworx 9.3.4.

 

@supports (ptcs-style-unit: "PTCS-CORE-GRID") {
    [part=tree-toggle-icon] {
        position:absolute !important;
        right:0px !important;
    }
}

1 reply

12-Amethyst
October 19, 2022

he PG

 

you can try this if you are using thingworx 9.3.4.

 

@supports (ptcs-style-unit: "PTCS-CORE-GRID") {
    [part=tree-toggle-icon] {
        position:absolute !important;
        right:0px !important;
    }
}

12-Amethyst
October 19, 2022

Thank you so much! It worked.