Popup Calendar is not in correct place (v18.1.0.57)

Hi Syncfusion Team,

I just found out in v18.1.0.57 has a bug in Popup Calendar, is not in correct place (under the control).

It didn't happen on previous version.

Below is the example code :

@page "/test"
@using Syncfusion.Blazor.Calendars
@using Syncfusion.Blazor.Inputs

<div class="container">
    <div class="row">
        <div class="col-md">
            <SfDatePicker @ref="Date1"
                          @bind-Value="DateValue1"
                          TValue="DateTime"
                          Format="dd-MM-yyyy"
                          StrictMode="true"
                          Placeholder="From"
                          FloatLabelType="FloatLabelType.Auto">
                <DatePickerEvents TValue="DateTime" Focus="FocusHandler1" />
            </SfDatePicker>
        </div>
        <div class="col-md">
            <SfDatePicker @ref="Date2"
                          @bind-Value="DateValue2"
                          TValue="DateTime"
                          Format="dd-MM-yyyy"
                          StrictMode="true"
                          Placeholder="To"
                          FloatLabelType="FloatLabelType.Auto">
                <DatePickerEvents TValue="DateTime" Focus="FocusHandler2" />
            </SfDatePicker>
        </div>
    </div>
</div>

@code {
    SfDatePicker<DateTime> Date1 { get; set; }
    SfDatePicker<DateTime> Date2 { get; set; }
    DateTime DateValue1 { get; set; }
    DateTime DateValue2 { get; set; }

    protected override void OnInitialized()
    {
        base.OnInitialized();
        DateValue1 = DateTime.Now;
        DateValue2 = DateTime.Now;
    }

    void FocusHandler1(Syncfusion.Blazor.Calendars.FocusEventArgs args)
    {
        this.Date1.Show();
    }

    void FocusHandler2(Syncfusion.Blazor.Calendars.FocusEventArgs args)
    {
        this.Date2.Show();
    }
}

Regards,
Handi Rusli


4 Replies 1 reply marked as answer

BC Berly Christopher Syncfusion Team June 17, 2020 04:05 PM UTC

Hi Handi, 
  
Greetings from Syncfusion support.  
  
We have confirmed the reported issue “popup misalignment issue in drop-down” as a bug at our end. So, we will provide custom NuGet for this issue on tomorrow (18th June 2020). Please track the below feedback to know about the feedback. 
  
  
Regards, 
Berly B.C 



PO Prince Oliver Syncfusion Team June 17, 2020 04:27 PM UTC

Hi Handi, 
 
We have resolved the the issue “popup misalignment in datepicker” and the fix is available in the latest NuGet version 18.1.0.58. 
 
 
We suggest you upgrade to the latest version to resolve the issue. 
 
Regards, 
Prince 


Marked as answer

HA Handi June 18, 2020 12:33 PM UTC

Hi Prince Oliver,

I noticed that bug has been resolved in the newer version.

Thank you.

Regards,
Handi Rusli


SN Sevvandhi Nagulan Syncfusion Team June 19, 2020 04:33 AM UTC

Hi Handi, 
 
 
Thanks for the update. Please let us know if you need any other further assistance. 
 
 
Regards, 
Sevvandhi N 


Loader.
Up arrow icon