I am following the post at:
http://www.kendoui.com/forums/kendo-ui-web/grid/display-boolean-field-as-checkbox.aspx
This tells me to use a template to make a boolan value display as a checkbox instead of the words 'true' or 'false'.
I want the default editor (checkbox) to still function while using 'incell' editing.
The problem is that with the template shown above, I can't get the cell to edit when I click on the checkbox shown by the template. Instead, I have to click somewhere else in the cell to enable 'editing' of the cell and then the default editor is showed and I can change the text box.
How can I have a checkbox display that allows the user to perform 'incell' editing with a checkbox and not have the odd behavior of having to click somewhere in the cell (but not on the checkbox) to enable edit mode before the checkbox can be modified?
The following JS fiddle shows the problem:
http://jsfiddle.net/cn172/EntQX/2/
In this fiddle, click on a checkbox in the grid, but nothing happens. Now click somewhere inside a 'bool val' cell that isn't the checkbox and you'll see the checkbox transform into an editor. This behavior is confusing to users.