New to KendoReactStart a free 30-day trial

MultiColumnComboBox

Represents the MultiColumnComboBox component.

Accepts properties of type MultiColumnComboBoxProps. Obtaining the ref returns an object of type MultiColumnComboBoxHandle.

A Functional Component.

jsx
const columns = [
 {
   field: "id",
   header: "ID",
   width: "100px",
 },
 {
   field: "name",
   header: "Name",
   width: "300px",
 },
 {
   field: "position",
   header: "Position",
   width: "300px",
  },
];
const App = () => {
  return (
    <div>
      <div>Employees:</div>
      <MultiColumnComboBox
        data={employees}
        columns={columns}
        textField={"name"}
        style={{
          width: "300px",
        }}
        placeholder="Please select ..."
      />
    </div>
  );
};
ReactDOM.render(<App />, document.querySelector("my-app"));
NameTypeDefaultDescription

props

MultiColumnComboBoxProps intersected with RefAttributes<undefined>

The props of the MultiColumnComboBox component.

Not finding the help you need?
Contact Support