Flex DataGrid“verticalGridLines 和horizontalGridLines”
朋友们,
我正在我的一个 Flex 应用程序中使用 DataGrid。但是,我不希望 DataGrid 垂直线和水平线出现在该 DataGrid 中。
因此,我使用了 verticalGridLines
和 horizontalGridLines
的样式。
但是,问题是,我想要一些特定的垂直和水平 要删除的行。通过使用上述样式,所有垂直和 水平线被删除。
如何处理这个问题?有什么解决办法吗?
谢谢
Friends,
I am using DataGrid in one of my flex application. But, I don't want the DataGrid vertical and horizontal lines to appear within that DataGrid.
So, I used style of verticalGridLines
and horizontalGridLines
.
But, the problem is, I want some specific vertical and horizontal
lines to be removed. By using above styles, all vertical and
horizontal lines were getting removed.
How to handle this problem ? Any solution ?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
数据网格的Style 属性verticalGridLines 和horizontalGridLines 用于确定网格线的可见性,为true 或false。默认值为 true。
有关更多信息,您可以参考此处
The Style property of the datagrid verticalGridLines and horizontalGridLines is used for visibility of grid lines is either true or false. The default value is true.
for more information you can refer Here
如果您想自定义 dataGrid 以绘制特定的网格线,那么您应该考虑扩展数据网格并覆盖 drawHorizontalLine 和 drawVerticalLine 与您的自定义绘图逻辑。
If you want to customize the dataGrid to draw specific gird lines then you should consider extending the data grid and override drawHorizontalLine and drawVerticalLine with your custom drawing logic.