我遇到了colResizable
插件的问题。当拖动调整大小时,如何重置所有列宽?
Column width with colResizable plugin
var originalColumnWidths = new Array();
$.each($('th', t), function () {
originalColumnWidths.push($(this).width());
});
// t.addClass(SIGNATURE) ...
createGrips(t, originalColumnWidths);
// Change the signature
var createGrips = function (t, originalColumnWidths) {
// ...
// Replace that line
c.w = c.width();
// with the following
c.w = originalColumnWidths[i];
我阅读了上述帖子,但我遇到的错误是t
没有被定义。