Community Tip - You can Bookmark boards, posts or articles that you'd like to access again easily! X
I have used Grid widget with multi row selection on grid.
After doing so if we select multiple rows it does show how many rows we have selected on a grid as a selected rows label.
I wanted to hide it or turn it off but not getting any property to do so.
looking for any suggestion using which i can turn it off.
Solved! Go to Solution.
Thanks for the suggestion marc seems like css is the only solution on this in that case i will have to go with other approach but thanks to everyone for giving solutions.
Hi @MB_9621099
You can check it here
https://www.ptc.com/en/support/article/CS352537
Hope this helps you
Thanks!
Hi @danmorin
Before posting this issue i referred this post and now also i tried it but it doesn't get rid of that label.
so issue is still persisting.
Can you specify the ThingWorx version that you are using?
Thingworx 9.3.4
I tried this solution from that article :-
when it didnt work also tried to modify other properties in base but it didnt worked either.
Hi @MB_9621099
I tried adding this on the custom CSS, and its working on my 9.3.4
.widget-ptcsgrid::part(selected-rows-label){
display:none
}
could you try it again with this approach ?
Otherwise you can just use the Grid Advanced widget, by default it would not show selected row
Thanks
Thing is that for our project we are not suppose to use custom css which is why i was looking for other solution apart from using custom css.
Then can you try to use Grid Advanced widget rather than Grid widget ?
Thanks
Actually grid advanced is legacy widget and we are mostly using standard grid so it might be not used in our case but i will keep this suggestion in mind but if you have any solution around gird apart from css that would be great.
did this worked for you with 9.3.x version ?
It is still working on 9.3.3 version
ok because i tried same thing like shown in attached image but it still shows it.
Hello,
the setting you are looking for is "selected rows-Label" which has only style options for padding top and bottom.
In this case I can recommend you to use CSS.
If you use a CustomClass, the code will only affect this grid. If you want it to affect all grids in your mashup, leave out the part (.myGridClass).
.myGridClass .widget-ptcsgrid::part(selected-rows-label) {
display: none;
}
Best regards
Marc
Thanks for the suggestion marc seems like css is the only solution on this in that case i will have to go with other approach but thanks to everyone for giving solutions.