New to KendoReactLearn about KendoReact Free.

ComboBox

Represents the KendoReact ComboBox component.

Accepts properties of type ComboBoxProps. Obtaining the ref returns an object of type ComboBoxHandle.

A Functional Component.

jsx
const App = () => {
   const combobox = React.useRef(null);
   return (
      <div>
          <ComboBox
              data={[ "Albania", "Andorra", "Austria", "Belarus" ]}
              ref={combobox}
          />
          <Button onClick={() => alert(combobox.current.value)}>alert value</Button>
      </div>
   );
}
NameTypeDefaultDescription

props

ComboBoxProps intersected with RefAttributes<any>

The props of the ComboBox component.

Not finding the help you need?
Contact Support