Insert, Add, and Delete MulticolumnComboBox Records
Environment
Product | Progress® Telerik® UI MultiColumnComboBox for ASP.NET MVC |
Description
How can I insert, update, and remove records in the MulticolumnComboBox?
Solution
By design, the MulticolumnComboBox is a view-only widget which represents a drop-down list that shows more data than the regular ComboBox, and does not provide full CRUD operation support.
To work around this issue:
- Use the templates of the MulticolumnComboBox to add the buttons for the CRUD operations.
- Handle the events of the buttons to fire the necessary requests for those operations. For example, you can load partial views for the
Create
andEdit
operations in a Kendo UI Window, and do aPOST
request to the controller to delete a record.
For a runnable example, refer to the sample project on CRUD operations with MultiColumnComboBox.