DropDownDataGrid close when clic pagination bottom

I have a problem with the control DropDownDataGrid.
This is my control

<RadzenDropDownDataGrid Style="width:100%"
TValue="int?"
FilterCaseSensitivity="FilterCaseSensitivity.CaseInsensitive"
AllowFiltering="true"
AllowClear="true"
Data=@ProveedoresPaginados
LoadData="@CargarDatosAsync"
TextProperty="Nombre"
ValueProperty="id"
PageSize="5"
SearchText="..."
Placeholder="..."
Count="@TotalProveedores"
Disabled="@(!PuedeCambiarProveedor)"
Value="@(id > 0 ? id : null)"
Change=@((value) => { id = (int?)value ?? 0; DataList.Reload(); })>

but when i navigate on pagination bottoms the control close immediately.

Is there any way to avoid this behavior?

Sorry about my English

Not sure why you have this however might be related.