FlatPickrBlazor 5.0.0
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package FlatPickrBlazor --version 5.0.0
NuGet\Install-Package FlatPickrBlazor -Version 5.0.0
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="FlatPickrBlazor" Version="5.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add FlatPickrBlazor --version 5.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: FlatPickrBlazor, 5.0.0"
#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.
// Install FlatPickrBlazor as a Cake Addin #addin nuget:?package=FlatPickrBlazor&version=5.0.0 // Install FlatPickrBlazor as a Cake Tool #tool nuget:?package=FlatPickrBlazor&version=5.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
FlatPickr Blazor
uses https://github.com/flatpickr/flatpickr under the hood.
For a ready to use example, visit https://github.com/mathisloge/FlatpickrBlazorExample
Nuget Version is availible under https://www.nuget.org/packages/FlatPickrBlazor
Install-Package FlatPickrBlazor
Usage
MyFlatpickr.razor
<div>
<Flatpickr hidden class="my-custom-class" @ref="_datepicker" Options="@calendarOpts" OnChange="@OnChangeDate" />
<Flatpickr Options="@monthPickerOpts" PluginOptions="@monthPluginOptions" />
</div>
@code{
private Flatpickr _datepicker;
private FlatpickrOptions calendarOpts = new FlatpickrOptions
{
Inline = true,
WeekNumbers = true,
MaxDate = DateTimeOffset.UtcNow,
Locale = "de",
Mode = FlatpickrOptionsMode.Range
};
private FlatpickrOptions monthPickerOpts = new FlatpickrOptions
{
Inline = true
};
// these are already default values, so new FlatpickrPluginOptions() would fullfill everything, if you want default values
private FlatpickrPluginOptions monthPluginOptions = new FlatpickrPluginOptions
{
UseMonthSelectPlugin = new FlatpickrPluginOptions.MonthSelectOptions
{
ShortHand = false,
DateFormat = "F Y",
AltFormat = "F Y",
Theme = "light"
}
};
private void OnChangeDate(List<DateTimeOffset> dateTimes)
{
foreach (var dateTime in dateTimes)
{
Console.WriteLine(dateTime.ToString());
}
}
}
_Host.cshtml
you have to include at a minimum these to your _Host.cshtml
<link href="_content/FlatpickrBlazor/flatpickr.min.css" rel="stylesheet" />
<script src="_content/FlatpickrBlazor/flatpickr.min.js"></script>
<script src="_content/FlatpickrBlazor/flatpickr.blazor.js"></script>
to add a locale (specify in your FlatpickrOptions variable) add the following script:
<script src="_content/FlatpickrBlazor/l10n/de.js"></script>
and change the "de.js" with your choosed language
to add the plugins, you have to include the script and style files. e.g. for the month select plugin:
<link href="_content/FlatpickrBlazor/plugins/monthSelect/style.css" rel="stylesheet" />
<script src="_content/FlatpickrBlazor/plugins/monthSelect/index.js"></script>
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 is compatible. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net5.0
- Microsoft.AspNetCore.Components (>= 5.0.0-rc.2.20475.17)
- Microsoft.AspNetCore.Components.Web (>= 5.0.0-rc.2.20475.17)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.