Combo editor editable property.

I would like to have a combo editor inside a table that is editable (the user can insert his own value). I know that the combo widget has the ‘editable’ property, but I don’ t know how to apply this to the combo editor.

instead of editor “combo”, I would recommend using editor “text” with suggest.

{
    editor: "text",
    suggest: ["aaa", "bbb"]// or server side loading
}

Yes! This is a better solution, thanks.