IgniteUI / igniteui-blazor

Ignite UI for Blazor component library packs 35+ native Blazor UI Controls with 60+ high-performance Charts designed for any Blazor WASM or Server-side app scenario.
https://www.infragistics.com/products/ignite-ui-blazor
3 stars 3 forks source link

Calendar does not show selected value #107

Open wnvko opened 6 months ago

wnvko commented 6 months ago

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 image

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.

gmurray81 commented 5 months ago

again, you may want to test this again or describe your methodology, since I think some of the other items of this type seem to work fine when I just tested them.