flex4:如何将 GlowFilter 添加到 mx:DataGridColumn?
我正在使用 flex 4 构建一个应用程序。
使用
显示表格。
我想将
添加到 DataGridColumn。
我怎样才能这样做呢?
谢谢!
I'm building an application using flex 4.
Using <mx:DataGrid>
to display a table.
I would like to add a <s:GlowFilter>
to a DataGridColumn.
how can I do so?
thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要创建一个内置 GlowFilter 的项目渲染器。这是一个示例:
我的应用程序:
...这是 GlowingRenderer.mxml:
看起来不太漂亮,但可以完成工作:)
simon
You need to create an item renderer with the GlowFilter built in. Here's an example:
My application:
...and here's GlowingRenderer.mxml:
Doesn't look too pretty, but does the job :)
simon