Data Entry Control

I have developed simple CRUD application using Blazorise thrid party control.I would like  to make a change synfusion control for this application.Please check my attached code for blazorise and advise how to use  this synfusion control.

For example :

 <CardHeader> and <CardBody> ---->alternative in synfusion
 <FieldLabel> and <FieldBody>  ---- alternative in syncfusion
<EditForm>---- alternative in syncfusion


Attachment: Pages_39a8b206.zip

3 Replies 1 reply marked as answer

RK Revanth Krishnan Syncfusion Team April 5, 2021 12:43 PM UTC

Hi Ismail, 
 
 
Greetings from Syncfusion support. 
 
 
We have validated your query “I have developed simple CRUD application using Blazor third party control. I would like to make a change to synfusion control for this application. Please check my attached code for blazor and advise how to use  this Syncfusion control.” 
 
Component 1: <CardHeader> and <CardBody> (Alternative in Syncfusion) 
 
The Syncfusion card component can be used as a alternative. We have prepared a sample based on the shared code snippet for your reference, 
 
Code Snippet: 
<SfCard> 
    <CardContent>                     
        <table style="line-height: 1.4em;"> 
            <tr> 
                <td style="text-align:left"> 
                    <CardHeader Title="Typescript"></CardHeader> 
                </td> 
                <td> 
                    <div @onclick="@(()=> ShowTable = !ShowTable)"> 
                        <span class="e-icons e-collapse"></span> 
                    </div> 
                </td> 
            </tr> 
            <tr> 
                <td colspan="1"> 
                    Microsoft has done extensive work to make JavaScript easier to use. Microsoft TypeScript extends many features of .NET to JavaScript. 
                </td> 
            </tr> 
        </table> 
    </CardContent> 
    <CardFooter> 
        <CardFooterContent> 
            <SfButton CssClass="e-btn e-outline e-primary" @onclick="@(()=> ShowTable = !ShowTable)">Know More</SfButton> 
        </CardFooterContent> 
    </CardFooter> 
</SfCard> 
 
 
 
 
Component 2: <FieldLabel> and <FieldBody> (Alternative in Syncfusion) 
Component 3: <EditForm> 
 
We have validated your reported query. We would like to inform you that currently, we didn’t have the support to achieve your requirement “Blazor Form Layout Component” but we have already logged a feature request on this and the support will be included in any one of our upcoming releases. It can be tracked through our feedback portal below.    
 
 
Please cast your vote to make it count. We will prioritize the features on every release based on the demands. 
 
Please let us know if you need any further assistance. 
 
Regards, 
Revanth 
 


Marked as answer

KI KINS April 5, 2021 01:36 PM UTC

Noted thanks

Awaiting for this feature in upcoming  release


RK Revanth Krishnan Syncfusion Team April 6, 2021 05:09 AM UTC

Hi Ismail, 
 
Thanks for the update. 
 
We will let you know once the feature is implemented. 
 
Regards, 
Revanth 


Loader.
Up arrow icon