如何摆脱网格中的水平滚动条?

How to get rid of horizontal scrollbar in a Grid?

如何去除 Grid 中的水平滚动条?调整列宽并不能解决问题。

这将隐藏水平滚动条:

$("#[yourGirdIDHere] .waf-dataGrid-body").css("overflow-x","hidden");

副作用是它还会关闭水平滚动。如果网格水平方向有列越界,将无法滚动。

我能够通过在 Web 组件的 css 文件中输入以下内容来开始工作。

#{id}dataGrid1 .waf-dataGrid-body {
 overflow-x:hidden;
}