RadzenDropDownDataGrid PopupStyle

Hi,

For the RadzenDropDownDataGrid, I would like the field on my form to be narrow (200px), but the "pop-up" grid for searching to be wide (8000px).

I thought PopupStyle could do this, but I see it's not an option for this component.

Otherwise, I have to make a really wide field on my form which takes up too much space.

Thanks,
Mike

Hi @sys_mike,

You can achieve this by adding an id attribute and styling it:

<RadzenDropDownDataGrid id="myDropDownDataGrid" />

<style>
    #popup-myDropDownDataGrid {
        width: 1200px !important;
    }
</style>

Keep in mind that 8000px for a popup width is quite a large value that will introduce horizontal scroll on most desktop monitors.

This worked great! Thank you.

8000px was a typo - I meant to write 800px.

Mike