Flex Accordion 控件:对选项卡进行排序?
我在运行时加载手风琴控件的选项卡。选项卡的数量由用户的角色决定。每个选项卡都来自一个模块,因此加载时间是可变的。因此,每次运行应用程序时,列表顺序都会发生变化。
有没有一种实用的方法可以在加载每个新选项卡时对选项卡进行排序?
Im loading tabs for an accordion control at runtime. The number of tabs is determined by the role of the user. Each tab comes from a module so the load time is variable. As a result the list order changes every time the app is run.
Is there a practical way to sort the tabs as each new tab is loaded?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
嗯,这对我来说很愚蠢:
在“ModuleEvent.Ready”处理程序中添加以下代码:
如果您有很多选项卡,则在每次加载时都会导致问题..但我的列表很短..
Well that was silly of me:
in the 'ModuleEvent.Ready' handler add this code:
resorting on every load will cause problems if you have lots of tabs.. but my list is pretty short..