AdvancedDataGrid 排序数字颜色

发布于 2024-07-30 11:50:14 字数 117 浏览 6 评论 0原文

在高级数据网格的标题旁边,您会看到一个数字。 无论我做什么,这个数字都保持灰色。 我已经搜索了 1 个小时才找到解决方案。 非常烦人,因为改变它应该很简单。

我希望有人能帮助我解决这个问题

next to the header of an advancedDataGrid you see a number. This number stays grey no matter what i do. I Already searched 1 hour to find the solution. Very anoying because it should be so simple to change this.

I hope someone could help me with this problem

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

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

发布评论

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

评论(2

内心旳酸楚 2024-08-06 11:50:14

我认为您正在寻找的是 mx:AdvancedDataGridHeaderRenderer 的“proposeColor”样式。 这将处理灰色。

现在,如果您想更改默认文本颜色,我必须上下搜索才能找到答案。 最终,我意识到,如果我制作了一个 AdvancedDataGridSortItemRenderer 并在其中放入:

override protected function commitProperties():void {
    super.commitProperties();
    label.textColor = 0xFFFFFF;
}

则永久设置文本颜色,这意味着它将杀死您提议的颜色。

I think that what you are looking for is the 'proposedColor' style of the mx:AdvancedDataGridHeaderRenderer. That'll deal w/the grey.

Now if you wanted to change the default text colour, I had to search high and low figuring that one out. Eventually, I came to realize that if I made an AdvancedDataGridSortItemRenderer and in it put:

override protected function commitProperties():void {
    super.commitProperties();
    label.textColor = 0xFFFFFF;
}

that sets the text colour permanently, which means it would kill your proposedColor.

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