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
class App extends React.Component {
   multiselect = null;
   render() {
      return (
         <div>
             <MultiSelect
                 data={[ "Albania", "Andorra", "Austria", "Belarus" ]}
                 ref={component => this.multiselect = component}
             />
             <button onClick={() => alert(this.multiselect.value)}>alert value</button>
         </div>
      );
   }
}
ReactDOM.render(<App />, document.querySelector('my-app'));
NameTypeDefaultDescription

props

MultiSelectProps intersected with RefAttributes<any>

The props of the MultiSelect component.

Not finding the help you need?
Contact Support