SlickGrid で標準の jQuery イベントを使用する方法はありますか? 例えば。
grid = new Grid($("#myGrid"), data, columns, options);
grid.blur(function(){}); // this would be nice
// this will let me add jQuery events to the whole grid, but
// I lose the cell position/data
$("#myGrid").blur(function(){});
前もって感謝します!