Hello,
in the current version of ignite ui (2015.2) checkboxes dont't work after clicking once at the cell.In 2014.2 this problem didn't exist.
I created 2 jsfiddles (with sample-code from http://www.igniteui.com/grid/editing-api-events)2015.2: http://jsfiddle.net/w6384euq/2014.2: http://jsfiddle.net/jug3q8mg/
Hello Martin,
when the grid is in display mode you cannot toggle the checkbox. When the row enters edit mode, then you can check the checkbox for that row.
Clicking the checkbox multiple time is expected behavior but there is some workaround for this, you can add the following code in the sample.
$("#grid").on({ "click": function (evt) { var grid = $("#grid"), checkbox = $(evt.target).closest("[role='checkbox']"), val = checkbox.attr("aria-checked") === "true", rowId = checkbox.closest("tr").data("id"); if (!grid.igGridUpdating("isEditing") && checkbox.length) { grid.igGridUpdating("setCellValue", rowId, "MakeFlag", !val); } } }, "span[role='checkbox']");
I have modified the fiddle sample you can refer it with the following link: http://jsfiddle.net/w6384euq/2/
Thank you for posting in our forums!
I have investigated your issue, and I have asked our engineering staff to examine this further.
I will update you with any new information after the review. You can also continue to send updates to this case at any time.
Please let me know if you need more information.