Syncfusion.AspNetCore.Calendars 34.1.33

Prefix Reserved
dotnet add package Syncfusion.AspNetCore.Calendars --version 34.1.33
                    
NuGet\Install-Package Syncfusion.AspNetCore.Calendars -Version 34.1.33
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Syncfusion.AspNetCore.Calendars" Version="34.1.33" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Syncfusion.AspNetCore.Calendars" Version="34.1.33" />
                    
Directory.Packages.props
<PackageReference Include="Syncfusion.AspNetCore.Calendars" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Syncfusion.AspNetCore.Calendars --version 34.1.33
                    
#r "nuget: Syncfusion.AspNetCore.Calendars, 34.1.33"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Syncfusion.AspNetCore.Calendars@34.1.33
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Syncfusion.AspNetCore.Calendars&version=34.1.33
                    
Install as a Cake Addin
#tool nuget:?package=Syncfusion.AspNetCore.Calendars&version=34.1.33
                    
Install as a Cake Tool

Syncfusion® ASP.NET Core Calendar Components

A comprehensive suite of ASP.NET Core calendar and date/time selection components for building modern interactive user interfaces. Includes Calendar, DatePicker, DateRangePicker, DateTimePicker, TimePicker, Scheduler, and Gantt Chart components.

Supported Components

This package includes the following components:

ASP.NET Core Calendar Component

The ASP.NET Core Calendar Component allows users to select a date from a graphical calendar display with support for multiple view modes.

Key Features:

  • Multiple Views: Month, year, and decade view navigation
  • Date Range Support: Set minimum and maximum date restrictions
  • Disabled Dates: Highlight and disable specific dates
  • Keyboard Navigation: Full keyboard support for accessibility
  • Globalization: Multi-language and locale support
  • Customization: Custom CSS classes and themes
  • Events: Selection and change event handlers

Documentation

ASP.NET Core DatePicker Component

The ASP.NET Core DatePicker Component provides a text input with a popup calendar for convenient date selection.

Key Features:

  • Popup Calendar: Quick date selection with calendar popup
  • Text Input: Direct date entry with validation
  • Range Constraints: Min and max date range support
  • Format Support: Custom date format options
  • Keyboard Navigation: Full keyboard accessibility
  • Clear Button: Easy date clearing functionality
  • Responsive Design: Mobile-friendly interface

Documentation

ASP.NET Core DateTimePicker Component

The ASP.NET Core DateTimePicker Component combines a date calendar popup and a time dropdown in a single input control for convenient date-and-time selection.

Key Features:

  • Combined Input: Single control for selecting both date and time together
  • Popup Calendar + Time List: Inline calendar with scrollable time dropdown
  • Range Constraints: Min and max DateTime boundary support
  • Custom Formats: Configurable display format (e.g., MM/dd/yyyy HH:mm)
  • Step Interval: Adjustable time interval steps (e.g., every 15 or 30 minutes)
  • Keyboard Navigation: Full keyboard and accessibility support
  • Clear Button: One-click reset of the selected value
  • Strict Mode: Prevents entry of out-of-range values
  • Responsive Design: Touch and mobile-friendly interface

Documentation

ASP.NET Core TimePicker Component

The ASP.NET Core TimePicker Component provides a text input with a scrollable time list popup for quick and accurate time selection.

Key Features:

  • Time List Popup: Scrollable dropdown with configurable time intervals
  • Text Input: Direct time entry with automatic validation
  • Range Constraints: Min and max time boundary enforcement
  • Step Interval: Configurable slot intervals (e.g., 15, 30, or 60 minutes)
  • Format Support: 12-hour (hh:mm a) and 24-hour (HH:mm) format options
  • Keyboard Navigation: Arrow key scrolling and full accessibility support
  • Clear Button: One-click reset of the selected time
  • Strict Mode: Prevents entry of values outside the allowed range
  • Responsive Design: Touch-optimised for mobile devices

Documentation

ASP.NET Core DateRangePicker Component

The ASP.NET Core DateRangePicker Component enables selection of start and end dates using a dual-calendar interface.

Key Features:

  • Dual Calendar: Simultaneous display of two calendars
  • Range Selection: Easy start and end date selection
  • Preset Ranges: Pre-defined date range options
  • Disabled Ranges: Disable specific date ranges
  • Custom Ranges: Define custom date range presets
  • Responsiveness: Adaptive layout for all devices

Documentation

Common Setup

All Syncfusion ASP.NET Core controls share the same foundational setup steps:

1. Install NuGet Package

Install-Package Syncfusion.AspNetCore.Calendars

2. Register Tag Helper

Add the following to ~/Pages/_ViewImports.cshtml or ~/Views/_ViewImports.cshtml:

@addTagHelper *, Syncfusion.AspNetCore.Base
@addTagHelper *, Syncfusion.AspNetCore.Calendars

3. Add Stylesheet & Script References

In your layout file (~/Pages/Shared/_Layout.cshtml):

<head>
    
    <link rel="stylesheet" href="_content/Syncfusion.AspNetCore.Themes/styles/fluent2.css" />
    

    
    <script src="_content/Syncfusion.AspNetCore.Calendars/scripts/sf-calendar.min.js"></script>

    
    <script src="_content/Syncfusion.AspNetCore.Calendars/scripts/sf-datepicker.min.js"></script>

    
    <script src="_content/Syncfusion.AspNetCore.Calendars/scripts/sf-daterangepicker.min.js"></script>

    
    <script src="_content/Syncfusion.AspNetCore.Calendars/scripts/sf-datetimepicker.min.js"></script>

    
    <script src="_content/Syncfusion.AspNetCore.Calendars/scripts/sf-timepicker.min.js"></script>
</head>

4. Register Script Manager

In your layout file (~/Pages/Shared/_Layout.cshtml), At the end of your <body> tag:

<ejs-scripts></ejs-scripts>

Quick Start

Step 1: Create a Model

using System;

public class CalendarDemoModel
{
    public DateTime SelectedDate { get; set; }
    public DateTime? StartDate { get; set; }
    public DateTime? EndDate { get; set; }
}

Step 2: Create a PageModel

Create ~/Pages/Index.cshtml.cs:

using Microsoft.AspNetCore.Mvc.RazorPages;
using System;

public class IndexModel : PageModel
{
    public CalendarDemoModel CalendarDemo { get; set; } = new CalendarDemoModel();

    public void OnGet()
    {
        CalendarDemo.SelectedDate = DateTime.Now;
        CalendarDemo.StartDate = DateTime.Now;
        CalendarDemo.EndDate = DateTime.Now.AddDays(7);
    }

    public void OnPostSelectDate()
    {
        // Handle date selection
    }
}

Step 3: Create the View

Create ~/Pages/Index.cshtml:

@page
@model IndexModel

<div class="container mt-5">
    <h2>Calendar Components Demo</h2>

    
    <div class="mb-4">
        <h5>Calendar</h5>
        <ejs-calendar id="calendar" value="DateTime.Now"></ejs-calendar>
    </div>

    
    <div class="mb-4">
        <h5>DatePicker</h5>
        <ejs-datepicker id="datepicker" placeholder="Choose a Date"></ejs-datepicker>
    </div>

    
    <div class="mb-4">
        <h5>DateRangePicker</h5>
        <ejs-daterangepicker id="daterangepicker" placeholder="Select a range"></ejs-daterangepicker>
    </div>

    
    <div class="mb-4">
        <h5>DateTimePicker</h5>
        <ejs-datetimepicker id="datetimepicker" placeholder="Select a date and time"></ejs-datetimepicker>
    </div>

    
    <div class="mb-4">
        <h5>TimePicker</h5>
        <ejs-timepicker id="timepicker" placeholder="Select a time"></ejs-timepicker>
    </div>
</div>

Step 4: Run the Application

Press Ctrl+F5 to run the application in your browser.

Support

License

This is a commercial product and requires a paid license for possession or use. Review the Syncfusion® EULA

About Syncfusion®

Syncfusion® provides 1600+ UI components and frameworks for web, mobile, and desktop development across multiple platforms:

Web: Blazor | ASP.NET Core | ASP.NET MVC | JavaScript | Angular | React | Vue

Mobile: Flutter | MAUI | UWP

Desktop: WinForms | WPF | WinUI

Learn more at www.syncfusion.com

sales@syncfusion.com | Toll Free: 1-888-9-DOTNET

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (11)

Showing the top 5 NuGet packages that depend on Syncfusion.AspNetCore.Calendars:

Package Downloads
Syncfusion.AspNetCore.Grid

Syncfusion® ASP.NET Core Grid is a high-performance, feature-rich data grid control for displaying and manipulating tabular data. It supports virtual scrolling,paging, sorting, filtering, grouping, searching, inline editing (batch, dialog, inline),frozen rows and columns, column resizing, reordering, multi-column sorting, master-detail,aggregates, export to Excel/PDF/CSV, and accessibility.

Syncfusion.AspNetCore.StockChart

Syncfusion® ASP.NET Core Stock Chart control is a specialized financial chart for visualizing stock market data with support for OHLC (Open-High-Low-Close) and Candlestick chart types. It includes built-in technical indicators (SMA, EMA, MACD, Bollinger Bands, RSI, Stochastic, ATR, etc.), trendlines, period selectors, range selectors, crosshair, trackball, zooming and panning, tooltip, and logarithmic axis. It is the ideal choice for building stock trading dashboards, financial analytics, and market data applications on ASP.NET Core.

Syncfusion.AspNetCore.InPlaceEditor

Syncfusion® ASP.NET Core In-Place Editor control enables inline editing of content directly within the page without navigating away or opening a separate dialog. It supports a wide range of editor types including TextBox, Numeric, DatePicker, DropDownList, MultiSelect, RichTextEditor, and more. It provides features like edit on click/double-click, validation, server-side data saving, custom adaptor support, and accessibility, making it ideal for detail pages and data record views in ASP.NET Core applications.

Syncfusion.AspNetCore.TreeGrid

Syncfusion® ASP.NET Core TreeGrid control is a feature-rich hierarchical data grid for displaying tree-structured (parent-child) tabular data. It supports self-referential and hierarchical data binding, lazy loading, virtual scrolling, column resizing, reordering, sorting, filtering, editing (inline, dialog, batch), aggregates, summary rows, column templates, row drag-and-drop, export to Excel/PDF, and accessibility. It is ideal for displaying organizational charts, file systems, bill of materials, and nested data structures in ASP.NET Core applications.

Syncfusion.AspNetCore.Schedule

Syncfusion® ASP.NET Core Scheduler (Schedule) is a full-featured event calendar and scheduling control that supports day, week, work week, month, agenda, and timeline views. It provides features like drag-and-drop event scheduling, event resizing, recurring events (RRULE), resource grouping, multiple resources, room booking, time zone support, remote data binding, templates, print/export, and accessibility. It is ideal for appointment scheduling, resource management, and calendar applications built on ASP.NET Core.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
34.1.33 111 7/27/2026
34.1.32 372 7/21/2026
34.1.31 370 7/14/2026
34.1.30 339 7/9/2026
34.1.29 363 7/6/2026