1
0
mirror of synced 2025-02-17 11:18:32 +01:00

Disable sorting on a few cols to save some horizontal space

This commit is contained in:
shiibe 2022-09-10 11:53:25 -04:00
parent bc21518521
commit a78bc7ace4

View File

@ -72,11 +72,11 @@ else
}
</CellTemplate>
</Column>
<Column T="SongBestData" Field="@nameof(SongBestData.GoodCount)" Title="Good" />
<Column T="SongBestData" Field="@nameof(SongBestData.OkCount)" Title="Ok" />
<Column T="SongBestData" Field="@nameof(SongBestData.MissCount)" Title="Bad" />
<Column T="SongBestData" Field="@nameof(SongBestData.DrumrollCount)" Title="Drum Roll" />
<Column T="SongBestData" Field="@nameof(SongBestData.ComboCount)" Title="Max Combo" />
<Column T="SongBestData" Field="@nameof(SongBestData.GoodCount)" Title="Good" Sortable="false"/>
<Column T="SongBestData" Field="@nameof(SongBestData.OkCount)" Title="Ok" Sortable="false" />
<Column T="SongBestData" Field="@nameof(SongBestData.MissCount)" Title="Bad" Sortable="false"/>
<Column T="SongBestData" Field="@nameof(SongBestData.DrumrollCount)" Title="Drum Roll" Sortable="false"/>
<Column T="SongBestData" Field="@nameof(SongBestData.ComboCount)" Title="Max Combo" Sortable="false" />
@*<Column T="SongBestData" Field="@nameof(SongBestData.HitCount)" Title="Hit" />*@
@*<Column T="SongBestData" Field="@nameof(SongBestData.BestRate)" Title="Best Rate"/>*@
</Columns>