Hi
I am aware that you can pass a template attribute that contains the cell html to the grid or use your special templating syntax.
Is it possible to return a DOM object for a cell template so events such as onClick will work correctly?
Basically I'm trying to get a full function of marionette itemview as a cell element and since only html can be returned (from what I figured out) the events dont register.
At the moment I'm rendering a cell this way:
column.template = (dataItem) => new SomeItemView(model: @_buildModelFromItemData(dataItem)).render().$el.html()