New to KendoReactLearn about KendoReact Free.

AutoComplete

Updated on Aug 21, 2025

Represents the KendoReact AutoComplete component.

Accepts properties of type AutoCompleteProps. Obtaining the ref returns an object of type AutoCompleteHandle.

A Functional Component.

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

props

AutoCompleteProps intersected with RefAttributes<any>

The props of the AutoComplete component.

Not finding the help you need?
Contact Support