New to KendoReactStart a free 30-day trial

MultiSelect

Component

Represents the KendoReact MultiSelect component.

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

A Functional Component.

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

The props of the MultiSelect component.

In this article
DefinitionPropertiesprops
Not finding the help you need?
Contact Support