In my page I have a SfGrid that allows sorting and has GridsortSettings set so 4 out of 5 columns are sortable.
Now I want to hide the sortnumber, since it does not provide relevant information and is not needed.
To do so, I tried to set display for the element to none directly in the razor file the grid control is in:
.e-grid .e-sortnumber {
display: none;
}Somehow this css selector fails to target the element, and the span is still visible.I also tried, ordering the links in _Host.cshtml so the Syncfusion bootstrap file is loaded after my applications css.