Can the grid columns be defined by a template?

I’ve been working with dhtmlx touch and very much like how it is possible to define a template for each column.

Is it possible to do the same with dhtmlxGrid?

I want to define a grid with a single column. Inside of the column I would like define a template such as:

<div class='myclass'>#data1#<br>#data2#</div>

I’ve been coding Touch for so long, I’ve forgot

I realize this can be accomplished with Dataview. The only problem I have with dataview is that I need the row height to automatically adjust to contents of the cell.

So if it is possible that the grid can accept a template, this would solve the variable row height problem.

Unfortunately the templates are not supported in dhtmlxgrid.

Unfortunately it is not possible, grid can’t combine different data in the cell through client side templates.

You can form necessary data as cell value directly on server side, or use custom exCell type, which is rather complex approach.