Hi, I'm using Kendo grid in javascript (coffeescript)
I have a boolean grid column with a template functon:
column:
template: (row) -> if row.booleanField then '<img src="/static/img/yes.png"' else ''
The column is editable, and show a checkbox when editing. After edit, and the cell becomes dirty, template no longer works - the code runs, but the cell does not get the img.