从 Spark DataGrid 中删除标头

发布于 2024-12-03 01:18:45 字数 215 浏览 0 评论 0原文

如何从 Spark DataGrid 中删除标题行? MX DataGrid 具有“showHeaders”属性,但这似乎不存在于 Spark DataGrid 中。

这看起来应该是一个非常简单的任务,所以要么我非常密集,要么只是错过了一些东西?我是否必须为我的 DataGrid 创建自定义皮肤并删除标题部分?这看起来有点矫枉过正,还是 Flex/Spark 的方式?

谢谢, 菲尔

How do you remove the header row from a Spark DataGrid? MX DataGrid had the attribute "showHeaders" but this doesn't seem to be present in the Spark DataGrid.

This seems like it should be a very easy task, so either I'm extremely dense or just missing something? Do I have to create a custom skin for my DataGrid and remove the header parts? That seems like overkill or is it the Flex / Spark way?

Thanks,
Phil

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

魂归处 2024-12-10 01:18:45

您应该为 DataGrid 创建自定义外观。您应该只复制标准 spark.skins.spark.DataGridSkin 并删除以下行:

    <!--- @private -->
    <s:GridColumnHeaderGroup id="columnHeaderGroup"
        paddingLeft="1" paddingTop="1" paddingRight="1" minHeight="21" 
        columnSeparator="{headerColumnSeparator}"
        headerRenderer="{headerRenderer}"/>

You should create a custom skin for DataGrid. You should just copy standard spark.skins.spark.DataGridSkin and remove there the following lines:

    <!--- @private -->
    <s:GridColumnHeaderGroup id="columnHeaderGroup"
        paddingLeft="1" paddingTop="1" paddingRight="1" minHeight="21" 
        columnSeparator="{headerColumnSeparator}"
        headerRenderer="{headerRenderer}"/>
烦人精 2024-12-10 01:18:45

一个懒惰的方法是将皮肤的标题高度设置为0:

<s:DataGrid id="dg"
  initialize="dg.columnHeaderGroup.height = 0"

或者设置visible/includeInLayout属性:

<s:DataGrid id="dg"
  initialize="dg.columnHeaderGroup.visible =
              dg.columnHeaderGroup.includeInLayout = false"

A lazy way is to set the skin's header height to 0:

<s:DataGrid id="dg"
  initialize="dg.columnHeaderGroup.height = 0"

or set the visible/includeInLayout properties:

<s:DataGrid id="dg"
  initialize="dg.columnHeaderGroup.visible =
              dg.columnHeaderGroup.includeInLayout = false"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文