New to KendoReactStart a free 30-day trial

Represents the MultiColumnComboBox component.

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

A Functional Component.

Definition

Package:@progress/kendo-react-dropdowns

Syntax:

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>
  );
};

Properties

The props of the MultiColumnComboBox component.

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