Skip to content

Commit

Permalink
More to #10
Browse files Browse the repository at this point in the history
  • Loading branch information
nheath99 committed Dec 8, 2018
1 parent b6f259a commit 1caff43
Showing 1 changed file with 16 additions and 12 deletions.
28 changes: 16 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ To bind a DatePicker to an Input element, use Blazor event bindings:
bool visible = false;
void focussed(UIFocusEventArgs e)
{
visible = true;
visible = true;
}
void selected(LocalDate localDate)
{
Expand All @@ -54,15 +54,6 @@ To bind a DatePicker to an Input element, use Blazor event bindings:
````
![DatePicker1](/docs/images/DatePicker_BoundToInput.png)

### Localization

Display day and month names in the specified culture:
````C#
<DatePicker Inline=true FormatProvider="@(new System.Globalization.CultureInfo("fr-FR"))" />
````
![DatePicker Localization](/docs/images/DatePicker_Localization.png)
![DatePicker Localization Months](/docs/images/DatePicker_Localization_Months.png)

### First Day of Week

Specify any weekday as the first day of the week (default is Monday):
Expand All @@ -72,6 +63,15 @@ Specify any weekday as the first day of the week (default is Monday):
````
![DatePicker First Day of Week](/docs/images/DatePicker_FirstDayOfWeek.png)

### Localization

Display day and month names in the specified culture:
````C#
<DatePicker Inline=true FormatProvider="@(new System.Globalization.CultureInfo("fr-FR"))" />
````
![DatePicker Localization](/docs/images/DatePicker_Localization.png)
![DatePicker Localization Months](/docs/images/DatePicker_Localization_Months.png)

### Disabled Days of Week

Disable specific days of the week:
Expand All @@ -80,8 +80,12 @@ Disable specific days of the week:
````
![DatePicker Disabled Days of Week](/docs/images/DatePicker_DaysOfWeekDisabled.png)

## Help Wanted!
Get in touch if you want to collaborate, there's plenty of features to add and plenty to improve!
### Additional Features
- Min/Max selectable date
- Specifit disabled dates
- Disable specified date intervals
- Custom header formats
- Show/Hide action buttons

## Future Development
- Time picker
Expand Down

0 comments on commit 1caff43

Please sign in to comment.