When using jqGrid how do you force a cell to load in its editable view on page load as well as when it is clicked?
If you set up \'cell editing\' like below, the che
This is an old one but has a lot of view so I decided to add my solution here too.
I'm making use of the .delegate function of JQuery to create a late binding implementation that will free you from the obligation of using the loadComplete event.
Just add the following:
$(document).delegate('#myGrid .jqgrow td input', 'click', function () { alert('aaa'); });
This will late bind that handler to every checkbox that's on the grid rows. You may have a problem here if you have more than one checkbox column.