MultiSelect
Component
Represents the KendoReact MultiSelect component.
Accepts properties of type MultiSelectProps.
Obtaining the ref returns an object of type MultiSelectHandle.
Definition
Package:@progress/kendo-react-dropdowns
Syntax:
jsx
const App = () => {
const multiselect = React.useRef(null);
return (
<div>
<MultiSelect
data={[ "Albania", "Andorra", "Austria", "Belarus" ]}
ref={multiselect}
/>
<Button onClick={() => alert(multiselect.current.value)}>alert value</Button>
</div>
);
}
Properties
props
MultiSelectProps intersected with RefAttributes<any>
The props of the MultiSelect component.