数据网格使用自动选择索引的数据 - 数据竞赛 - Flex

发布于 2024-11-07 01:17:44 字数 227 浏览 0 评论 0原文

我有一个从数据库加载 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

☆獨立☆ 2024-11-14 01:17:44

将下一个函数调用放在 callLater() 中;

selectedIndex = 0;
callLater(function():void {
    //nextFunction()
});

Put your next function call in a callLater();

selectedIndex = 0;
callLater(function():void {
    //nextFunction()
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文