使用 Handsontable ( http://handsontable.com ) 时,我似乎无法使列宽超过一定数量。例如,我想制作一个 600 像素宽的列。
但是当我设置 colWidth 属性时:
$("#example1").handsontable({
data: myData,
colWidths: [600, 47, 47, 47, 47, 47, 47, 47, 47, 47], //can also be a number or a function
rowHeaders: true,
colHeaders: true,
fixedRowsTop: 2,
fixedColumnsLeft: 2,
contextMenu: true
});
它不会大于大约 200 像素。
容器 div 尺寸似乎也不重要。
这是来自handsontable网站的修改示例,我将colWidth设置为800,将容器设置为1400px:http:
//jsfiddle.net/RSJQ3/