New to KendoReactLearn about KendoReact Free.

MultiSelect

Represents the KendoReact MultiSelect component.

Accepts properties of type MultiSelectProps. Obtaining the ref returns an object of type MultiSelectHandle.

A Functional Component.

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>
   );
}
NameTypeDefaultDescription

props

MultiSelectProps intersected with RefAttributes<any>

The props of the MultiSelect component.

Not finding the help you need?
Contact Support