• What is KendoReact
  • Getting Started
  • Server Components
  • Components
    • Animation
    • Barcodes
    • Buttons
    • Chartsupdated
    • Common Utilities
    • Conversational UIupdated
    • Data Gridupdated
    • Data Query
    • Data Tools
    • Date Inputs
    • Date Math
    • Dialogs
    • Drawing
    • Dropdownsupdated
    • Editor
    • Excel Export
    • File Saver
    • Formupdated
    • Ganttupdated
    • Gauges
    • Indicators
    • Inputsupdated
    • Labels
    • Layoutupdated
    • ListBox
    • ListView
    • Map
    • Notification
    • OrgChartnew
    • PDF Processing
    • PDFViewer
    • PivotGrid
    • Popup
    • Progress Bars
    • Ripple
    • Scheduler
    • ScrollView
    • Sortable
    • Spreadsheetupdated
    • TaskBoard
    • Tooltips
    • TreeList
    • TreeViewupdated
    • Upload
  • Sample Applications
  • Styling & Themes
  • Common Features
  • Project Setup
  • Knowledge Base
  • Changelog
  • Updates
  • Troubleshooting

MultiColumnComboBox

Represents the MultiColumnComboBox component.

Accepts properties of type MultiColumnComboBoxProps. Obtaining the MultiColumnComboBoxHandle.

A Functional Component.

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.

In this article

Not finding the help you need?