RadzenDropDownDataGrid Blazor

Hi,

I am using a RadzenDropDownDataGrid and whenever I select the left arrow on the grid and it reaches the first page it automatically closes.

I have tried this on the example page but it does not do this for some reason.

<RadzenDropDownDataGrid TValue="DeviceFilter" FilterCaseSensitivity="FilterCaseSensitivity.CaseInsensitive" AllowFiltering="true" AllowClear="true"
                                            Data="@Devices" @bind-Value="@CurrentDevice" TextProperty="SiteName"
                                            Style="margin-bottom: 20px">
                        <Columns>
                            <RadzenDropDownDataGridColumn Property="SiteName" Title="Site" Width="150px" />
                            <RadzenDropDownDataGridColumn Property="DeviceId" Title="Device Id" Width="150px" />
                        </Columns>
                    </RadzenDropDownDataGrid>

It closes when it reached the last page as well :frowning:

Any assistance on this one?

Hey @Sukanzubair,

Are you looking for dedicated support? The options are here:

I debugged this to the line
document.addEventListener('click', Radzen[id]); //Radzen.Blazor.js line 684

If I remove this line it works fine. I do not know the full context of this code so would need help if you think I should create a PR or should I log this somewhere?