Open Ritzlie opened 7 years ago
We do not currently support the ability to hide the Rank column. We will add the option to hide the rank column as a future feature request.
Sorry for asking again, I need to remove the colum rank, can help me how to remove the colum rank by modifying the table sorter form your code? thank You
A quick and dirty fix to make this work in the meantime without too much code is to add
.grid {
transform: translateX(-50px);
width: calc(100% + 50px);
}
to this scss file here: https://github.com/Microsoft/PowerBI-visuls-TableSorter/blob/develop/src/powerbi/css/TableSorterVisual.scss#L26
What this does is actually move the rank column off screen, and makes the width of the grid larger to compensate for it.
Are you @stopyoukid working on this feature request?
I am not. However, we are happy to review PRs for this feature.
@stopyoukid do you know where should I use the dirty fix? Can you give more detailed intruction where to implement it? I have created my own rank and really need to get rid of the old rank in the power bi report
I have an object in My application using Visual tablesorter, but I want to eliminate rank column on visual tablesorter. How can to remove or hide the rank column that existed at tablesorter?
thank you