Hi there
I have a grid where I\’d like to handle the double-click event.
The event fires fine in chrome & firefox. However it does not fire in IE8 (P.S: In IE9 it fires fine) !?
Here\’s my code:
$(\'#logGrid\').jqxGrid({ width: 440, theme: \'classic\', pageable: true, autoheight: true, columns: [ { text: \'Field1\', datafield: \'field1\', width: 165 }, { text: \'Field2\', datafield: \'field2\', width: 155, cellsformat: \'dd.MM.yyyy HH:mm:ss\' }, { text: \'Field3\', datafield: \'field3\', width: 120 } ] }); $(\'#logGrid\').bind(\'rowdoubleclick\', function (event) { alert(\'yes\'); });
Thx & cheers,
Peter