Skip to content Skip to sidebar Skip to footer

Multiple Editors In Handsontable

I'm wondering how its possible to use multiple editors in handsontable.js library. I'm using the columns option to specify each column attributes. Some of them show a list with the

Solution 1:

Handsontable is using cascading configuration, which is way to provide configuration options for whole table, its columns or particular cells.

In your case specifying the type attribute (you mentioned it here) trumps the top-level editor: LoggingEditor property. To use a custom editor you have to either not specify a type (because the default is text) or add the editor property to all column definitions. I've edited your example to utilize both methods in this fiddle (note that the autocomplete field do not work, but you should add another custom editor and not use the text one).

Post a Comment for "Multiple Editors In Handsontable"