我希望 slickgrid 的变量 rowHeight 取决于no。通过调用任何函数来调用内容中的行。
this.getRowHeight = function(){
return 45;
};
this.options = {
rowHeight: this.getRowHeight
};
答案 0 :(得分:0)
每行的行高不可调整。这是基础层面内置的网格。
鉴于此,如果您只想使用您的函数初始设置rowHeight
,则需要
this.getRowHeight = function(){
return 45;
};
this.options = {
rowHeight: this.getRowHeight()
};
也就是说,您需要函数的结果,而不是函数本身。这是基本的javascript,与SlickGrid无关。