Column template with combo box.

I have combo box editor for grid column. I have collection for combo. I want some cell with value that is not part of collection and they are not editable.
Like in following example I want to display my name which is not editable also but when I try that It will display me black with combo editable option
http://webix.com/snippet/7362e0e0

If you notice row4 it has my name but i is not get display on the cell.
I do not suppose to allow user to select my name in combo as it is predefined and read-only.

You can

a) use custom template for the column ( in such case auto-converting values based on “collection” will not be enabled )

b) use onStructureLoad event to override the template and use both auto-mapping and custom values.

http://webix.com/snippet/1d15089a

b :slight_smile: Thanks!

function(obj, common){} what is common here in documentation for template only obj is used?

It is a set of rendering helpers
In case of datatable it contains predefined helpers such as “checkbox”, “radio”, etc.

http://docs.webix.com/desktop__type.html