DynamicSelect
Installation
import { DynamicSelect } from 'uxp/components';Signature
const DynamicSelect: React.FunctionComponent<IDynamicSelectProps>Examples
<DynamicSelect
selected={selected}
options={(max: number, pageToken: string, args?: any) => getOptions(max, pageToken, args)}
onChange={(value) => { setSelected(value)}}
placeholder=" -- select --"
labelField="label"
timeout={500}
/>Properties
Name
Type
Mandatory
Default Value
Example Value
Related Types
Last updated