Thread ID: |
Created: |
Updated: |
Platform: |
Replies: |
149319 | Nov 21,2019 03:08 PM UTC | Nov 29,2019 03:46 AM UTC | Blazor | 7 |
![]() |
Tags: Grid |
@using Syncfusion.EJ2.Blazor.Buttons
@using Syncfusion.EJ2.Blazor.DropDowns
@using Syncfusion.EJ2.Blazor.Grids
@using Syncfusion.EJ2.Blazor.Inputs
<EjsGrid DataSource="@OrderData" Toolbar=@ToolbarItems>
<GridEditSettings AllowEditing="true" AllowAdding="true" AllowDeleting="true"></GridEditSettings>
<GridColumns>
. . . . . . . . .. . . .
<GridColumn Field=@nameof(Order.ShipName) HeaderText="Ship Name" TextAlign="TextAlign.Center" EditType="EditType.DropDownEdit" Edit="@ShipNameEditParams" Width="120"></GridColumn>
. . . . . . . . . . . .. .
</GridColumns>
</EjsGrid>
@code{
. . . . . . . .. . . .
public object ShipNameEditParams = new
{
@@params = new EjsDropDownList<string>() { AllowFiltering = true }
};
} |
This post will be permanently deleted. Are you sure you want to continue?
Sorry, An error occured while processing your request. Please try again later.
This page will automatically be redirected to the sign-in page in 10 seconds.