Reputation: 18719
How do I disable the '1' that shows up every time I try to sort my column?
Here is a plunkr: http://plnkr.co/edit/gKqt8JEo2FukS3URRLJ5?p=preview
You can see, that when you sort, '1'
shows up.
Upvotes: 2
Views: 1273
Reputation: 18719
Easier than I thought:
.ui-grid-sort-priority-number{
font-size: 0;
}
Upvotes: 6