弹性网格滚动条将所有列推向左侧
我有一个弹性网格,其中有 verticalScrollPolicy="auto"
。但是每次出现滚动条时,所有列都会被推到左侧,从而使列无法按应有的方式对齐。我尝试在所有列上设置 minWidth 以防止出现这种情况,但这似乎不起作用。有什么想法吗?
I have a flex grid where I have the verticalScrollPolicy="auto"
. But every time when the scrollbar appears all the columns get pushed to the left, making the columns not align as they should. I tried setting minWidth on all the columns to prevent this, but that doesn't seem to work. Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是 Flex dataGrid 的默认行为。如果它打扰你,你可以设置verticalScrollPolicy =“on”,无论是否需要都会绘制滚动条,并且网格不会调整大小。
This is the default behavior of flex dataGrids. If it bothers you, you can set verticalScrollPolicy="on" which will draw the scrollbar whether or not it's needed, and the grid will not resize.