gpt4 book ai didi

javascript - Handsontable 中的 Handsontable 下拉高度调整

转载 作者:行者123 更新时间:2023-11-29 20:52:16 35 4
gpt4 key购买 nike

如何在此下拉菜单中允许固定高度? (柱车)

我一直在无休止地摆弄以解决高度问题。我想要一个最大 300px 的固定高度下拉菜单。我用过AutoRowSize handsontable 站点中的高度功能和其他高度功能,但似乎都没有用。

我已经没有想法了。我可以尝试任何建议或替代方案吗?

我正在使用 Handsontable in Handsontable 功能 (Found Here)。

fiddle http://jsfiddle.net/72dgoLva/3/

    columns: [
{
type: 'handsontable',
handsontable: {
colHeaders: ['Marque', 'Country', 'Parent company'],
autoColumnSize: true,
data: manufacturerData,
getValue: function() {
var selection = this.getSelectedLast();

// Get always manufacture name of clicked row
return this.getSourceDataAtRow(selection[0]).name;
},
}
},
{type: 'numeric'}

]

How to apply scroll?

最佳答案

.handsontableEditor .ht_master {
height: 300px;
overflow-y: auto !important;
width: calc(100% + 2px);
}
.handsontableEditor .ht_clone_top {
transform: none !important;
}

... 似乎可以完成这项工作。 Updated fiddle .

我必须使用 !important 来动态覆盖 HoT 放置在元素上的内联样式。为限制这影响其他实例的可能性,请为选择器添加此实例的特定标识符前缀。

关于javascript - Handsontable 中的 Handsontable 下拉高度调整,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51317426/

35 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com