I have built an slickgrid with two checkbox columns. I use a slick formatter to built second checkbox column:
(function ($) {
// register namespace
$.extend(true, window, {
"Slick": {
"Formatters": {
"Checkbox": Checkbox
}
}
});
function Checkbox(row, cell, value, columnDef, dataContext) {
return '<input type="checkbox" >';
}
})(jQuery);
And this is the jsFiddle example: http://jsfiddle.net/9mb4T/10/
The problem is that if I click on second checkbox, this checkbox does not get marked. Slickgrid may be hiding the event.
Any idea?
Thanks in advance!
Edit: This is only happening when I build Slickgrid inside Jquery dialog.