-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Labels
Description
Description
I have a calendar bound to a variable. When value of the variable changes, calendar shows the value in its header but does not select the corresponding date in the calendar
Steps to reproduce
Setup calendar like this:
<IgbCalendar @bind-Value="_date"></IgbCalendar>
<IgbCalendar Value="_date"></IgbCalendar>
@code {
private DateTime _date;
}
Result
Chaning the value of the variable in first calendar changes the value of the second one but does not selects the date in the calendar. If you manually select a value in the second calendar and again change the value in the first it is working as expected.
Expected result
When bound variable's value is changed calendar should show the new value and select the corresponding day.