I am using the RichTextEditor in our .NET MAUI app and have the following:
<telerik:RadRichTextEditor
x:Name="paragraphEditor"
Grid.Row="1"
AutomationId="Editor"
BorderColor="{StaticResource Primary}"
BorderThickness="1"
Source="{Binding Test.TestWriteupHTML}" />
public class Test: INotifyPropertyChanged
{
private string? _testWriteupHTML;
public string? TestWriteupHTML
{
get => _testWriteupHTML;
set
{
if (_testWriteupHTML != value)
{
_testWriteupHTML = value;
OnPropertyChanged(nameof(TestWriteupHTML));
}
}
}
}
I have a method to update the TestWriteupHTMP property, while debugging I can see that it gets updated properly but on the UI the editor is not updating, any suggestions?