This question is locked. New answers and comments are not allowed.
Good morning,
I'm using the RadDataGrid control from 'UI for Windows Universal'.
When clicking on a column header, the rows are correctly sorted, but the sort symbol that shows up next to the header name is not showing correctly.
By inspecting that symbol with 'Live Visual Tree' I can see it's a TextBlock with FontFamily set to 'Segoe MDL2 Assets'.
By changing that to 'Segoe UI Symbol' in the 'Live Property Explorer', the symbol shows correctly (a black triangle).
I attached a screenshot that shows the issue.
Here is some code to reproduce the issue.
<Page x:Class="RadDataGridTest.MainPage" xmlns:local="using:RadDataGridTest" xmlns:grid="using:Telerik.UI.Xaml.Controls.Grid" xmlns:core="using:Telerik.Data.Core" mc:Ignorable="d" Name="Self"> <Grid> <grid:RadDataGrid AutoGenerateColumns="True" ItemsSource="{Binding ElementName=Self, Path=Items}"/> </Grid></Page>
public sealed partial class MainPage : Page{ public MainPage() { this.InitializeComponent(); } public List<Item> Items { get { return new List<Item> { new Item { Field = "Bravo" }, new Item { Field = "Alpha" }, new Item { Field = "Charlie" } }; } }}public class Item{ public string Field { get; set; }}
How can I fix this issue?
Thank you for your help.