Standardise formatting of dropdown lists

HI

Looking at the default formatting of the controls in SharePoint, SharePoint Choice (single) and Plumsail Drop Down format choices the same, yet the Lookup control displays different by default. Is there a reason for this and can they be made the same? See examples below

Thanks

Dropdown Control

SharePoint Choice

Lookup control

Hello @MadeNorth,

Do you mean the padding of options in the drop down?

If so, you can adjust it like so:

fd.spBeforeRender(() => {
    fd.field('Lookup').widgetOptions = {
        height: 100,
        virtual: {
            itemHeight: 50
        },
        dataSource: {
            pageSize: 8
        }
    };
}); 

See Customize search results article for more information.

Hi @Margo

Thanks for this, I did see that article. That looks better, though I don’t really want to have to modify every lookup control to make it the same as the other dropdowns.

The question really is, by default, why don’t these controls look the same?

Thanks

@MadeNorth,

While both elements are drop-downs, they are based on different widgets.
Is the appearance of the options the only concern?