BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
@using Syncfusion.EJ2.Blazor.Calendars
<EjsGrid TValue="Order" ID="Grid" AllowSorting="true" AllowFiltering="true" AllowPaging="true" Toolbar="@(new List<string>() { "Add", "Delete", "Update", "Cancel" })">
<GridColumns>
. . . . . .
<GridColumn Field=@nameof(Order.OrderDate) HeaderText="Date" EditType="EditType.DateTimePickerEdit" Edit="@DateParams" Width="150"></GridColumn>
</GridColumns>
</EjsGrid>
@code{
public static List<Order> Orders { get; set; }
public object DateParams = new
{
@@params = new DateTimePickerModel { Max = DateTime.Now, Min = DateTime.Now.AddDays(-100) }
};
} |
public object DateParams = new
{
@@params = new DateTimePickerModel { Max = DateTime.Now, Min = DateTime.Now.AddDays(-100),StrictMode = true }
}; |