colResizable插件:调整大小时重置列宽

时间:2017-07-19 08:50:25

标签: jquery jquery-ui-resizable

我遇到了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没有被定义。

0 个答案:

没有答案