FlexLib Windowsshade 和 Flex 4
我正在尝试在 Flex 4 中构建一个可折叠面板。我想我会使用这样的东西:
<s:Panel
width="100%">
<s:controlBarContent>
<flexlib:WindowShade
width="100% />
</s:controlBarContent>
</s:Panel>
但这会引发错误:在非构造函数上尝试实例化。我获取了 Flex 4 的 Flexlib zip,但仍然收到该错误。
还有另一种方法可以在控制栏中创建可折叠面板吗?
感谢您的任何提示!
I'm trying to build a collapsible panel in Flex 4. I thought I'd use s/thing like this:
<s:Panel
width="100%">
<s:controlBarContent>
<flexlib:WindowShade
width="100% />
</s:controlBarContent>
</s:Panel>
But that throws an error: Instantiation attempted on a non-constructor. I grabbed the flexlib zip for flex 4 but I'm still getting that error.
Is there another way to create a collapsible panel in a control bar?
Thank you for any tips!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要为 WindowShade 组件定义标头渲染器或标头类。
查看发生此异常的代码
异常是:
抛出异常的代码是这样的
<代码>
<代码>
您需要定义 headerClass 或 headerRenderer。
出于测试目的,我使用了
它,它就像一个魅力:)
玩得开心,祝你好运。
You need to define the header renderer or header Class for the WindowShade component.
Looking at their code where this exception occurs
Exception is:
The code that throws exception is this
You need to define either a headerClass or a headerRenderer.
For testing purposes i used
and it works like a charm :)
Have fun and good luck.