在this handsontable教程中,此行显示为:
colWidths: [55, 80, 80, 80, 80, 80, 80], //can also be a number or a function
在向函数传递时,有没有人知道(并有一个例子)使用colWidths
选项?
答案 0 :(得分:2)
这是一个构造函数选项。 如果有可能的功能,那么:
colWidths: function(){ return [55, 80, 80, 80, 80, 80, 80]; },