Flex Hero Spark 组件 - 从自定义 itemrenderer 中更改视图
我制作了一个带有 2 个按钮和一个标签的自定义列表 itemRenderer。一个按钮删除列表条目(这不是问题),第二个按钮将更改实际视图。 有谁知道我如何更改 itemrenderer 中的实际视图?
I've made a custom list itemRenderer with 2 buttons and a label. One button deletes the list entry (and thats not the problem) the second button would change the actual view.
Does anyone knows how I can change actual view within the itemrenderer ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我认为我的理解,你想更改视图堆栈或其他东西。您想要做的是将 itemRenderer 中的事件冒泡到显示列表中的某个点,在该点上有人将监听并触发事件处理程序,然后该事件处理程序会更改视图。
因此,在您的 itemRenderer 中
,您需要监听显示列表,甚至
在该函数中只需切换您的视图或您想要的任何其他内容。
From what I think I understand, you want to change a viewstack or something. What you want to do is bubble an event from the itemRenderer up to a point in the display list where someone will listen and trigger an event handler which then changes the view.
So, in your itemRenderer do
And up the display list you need to listen for that even
And in that function just switch your view or whatever else you want.