数据网格使用自动选择索引的数据 - 数据竞赛 - Flex
我有一个从数据库加载 contnet 的数据网格。
加载数据后,我有一个 selectIndex=0 的函数;
之后,我调用另一个函数,尝试在几个标签上显示所选项目。
问题是标签中没有任何内容加载,除非我运行这些函数两次。
我猜测这是某种数据竞争问题,在标签中显示项目的函数运行时尚未选择该项目。
那么解决方法是什么,如何在下一个函数运行之前选择要选择的项目。
I have a datagrid that loads contnet from a database.
Once the data has been loaded I have a function that has selectedIndex=0;
Right after that I call another function that tries to display the selected item across a couple of labels.
The problem is nothing loads in the labels unless I run the functions twice.
I'm guessing its some sort of data race problem where the item hasn't been selected by the time the function that displays the items in labels runs.
So whats the workaround how can I get the item to be selected before the next function runs.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将下一个函数调用放在 callLater() 中;
Put your next function call in a callLater();