Autocomplete List Length

Hi,

Is it possible to set the size of the suggestion list displayed? Right now, it looks like it shows about 7 items.

I'd like to be able to see about 30-40 items.

Thanks,
Mike

Hi @sys_mike,

Setting height for the AutoComplete drop down is not supported.

I spoke to soon! You can use CSS to set it:

.rz-autocomplete-panel {
max-height: 400px !important;
}

1 Like