我已经使用 react-select 实现了下拉菜单,使用 which on typeahead 选项显示,但最初下拉列表很大并且占据了整个页面。我想知道如何将 react-select 下拉列表设置为固定高度并在溢出时提供滚动。 反应选择
以下是我的部分代码
class Project extends React.Component {
render() {
const selectStyles = {
input: base => ({
...base,
color: theme.palette.text.primary,
'& input': {
font: 'inherit',
},
})
};
return ( <
SelectN inputProps = {
{
name: 'headedByUserId',
id: 'headedByUserId',
}
}
classes = {
classes
}
styles = {
selectStyles
}
options = {
suggestions
}
components = {
components
}
value = {
this.state.fields["headedByUserId"]
}
onChange = {
this.handleChangeDropdown.bind(this, "headedByUserId")
}
placeholder = "select owner"
/
>
)
}
}