“冻结” Flex 数据网格中的一列
我正在使用数据网格来显示一列日期范围和几列数据。 我想修复第一列(日期范围); 即当用户滚动其他列时该列保持在原位。 这样,当用户滚动浏览许多数据列时,日期列将始终可见。 我没有看到这个的数据网格属性; 有人有解决办法吗? TIA
I'm using a datagrid to display a column of date ranges and several columns of data. I'd like to make the first column (the date ranges) fixed; i.e. that column stays in place when the user scrolls the other columns. That way, the dates column will always be visible as the user scrolls through many data columns. I don't see a datagrid property for this; anyone have a solution? TIA
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
lockedColumnCount(和lockedRowCount)很可能就是您正在寻找的。
http://livedocs.adobe.com/flex/3/langref/index.html
您可能没有看到它的原因是它是 DataGridBase 的一部分,而不是 DataGrid 类本身的一部分。
lockedColumnCount (and lockedRowCount) is more than likely what you are looking for.
http://livedocs.adobe.com/flex/3/langref/index.html
The reason you probably didn't see it is because it is part of the DataGridBase and not part of the DataGrid class itself.
使用锁定的列计数属性
LockedColumnCount=”1″ height=”96″ HorizontalScrollPolicy=”on”
VerticalScrollPolicy=”on” width=”397″>
use locked column count property
lockedColumnCount=”1″ height=”96″ horizontalScrollPolicy=”on”
verticalScrollPolicy=”on” width=”397″>