有什么方法可以将标准的 jQuery 事件与 SlickGrid 一起使用吗?例如。
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(){});
提前致谢!