Hello,
I am using the latest version of sync-fusion and when I am adding a new row in the grid that time all column data showing properly but for "ClipImage" - (SfRichTextEditor) data do not show and data once I edited it. Please help me there are lots of bugs in the grid. Please help me to fix this asap. I also attached a sample code for your reference.
Hello Jeevankanth,
Please check this video and you will find out that if you moved using tab from Richtextbox editor then it will not shows the data. Please do something there are a lot of issues with your blazor version very frustrated.
Hello Jeevankanth,
Is there any update ? We have to move these new features to production before 2nd Aug. so can you please provide any update on this.
Thanks.
|
<Template>
@if (string.IsNullOrEmpty((context as Order).ClipImage))
{
<div style="height:100px;" class="manualEntry">
</div>
}
else
{
var clipimage = (context as Order).ClipImage;
<div @onclick="@(e => ShowClipImagePopup(clipimage))" style="height: 50px;width: 100px">
@((MarkupString)(clipimage))
</div>
}
</Template>
<EditTemplate>
<SfRichTextEditor ID="ClipImage" ShowCharCount="false" @bind-Value="@((context as Order).ClipImage)" MaxLength="2000" SaveInterval="10">
<ChildContent>
<RichTextEditorImageSettings SaveFormat="SaveFormat.Base64"></RichTextEditorImageSettings>
</ChildContent>
</SfRichTextEditor>
</EditTemplate>
</GridColumn> |