Hi,
I'm trying out the RichTextEditor and have a very simple implementation:
<telerikPrimitives:TabViewItem HeaderText="Notes">
<telerikPrimitives:TabViewItem.Content>
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition />
</Grid.RowDefinitions>
<telerikRichTextEditor:RadRichTextEditorToolbar x:Name="richTextToolbar" Grid.Row="0"
RichTextEditor="{x:Reference PracticeNotes}" />
<telerikRichTextEditor:RadRichTextEditor x:Name="PracticeNotes" Grid.Row="1" />
</Grid>
</telerikPrimitives:TabViewItem.Content>
</telerikPrimitives:TabViewItem>
<telerikPrimitives:TabViewItem.Content>
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition />
</Grid.RowDefinitions>
<telerikRichTextEditor:RadRichTextEditorToolbar x:Name="richTextToolbar" Grid.Row="0"
RichTextEditor="{x:Reference PracticeNotes}" />
<telerikRichTextEditor:RadRichTextEditor x:Name="PracticeNotes" Grid.Row="1" />
</Grid>
</telerikPrimitives:TabViewItem.Content>
</telerikPrimitives:TabViewItem>
This works find on IOS and Android, but generates an unhandled exception in UWP with the message:
Invalid URI: The URI scheme is not valid.
I have had no success in debugging it. Thoughts?