获取flex中TabNavigator中打开的Tab信息

发布于 2024-07-24 22:32:20 字数 322 浏览 5 评论 0原文

替代文本 http://img195.imageshack.us/img195/7845/tabx.jpg< /a>

我正在通过树列表视图上的单击事件打开选项卡。

问题是我不想打开 Pista 选项卡,正如您再次在图像中看到的那样。

我想聚焦打开的 Pista 选项卡。

请给你的建议。

谢谢。

问候,

希旺

alt text http://img195.imageshack.us/img195/7845/tabx.jpg

i am opening tabs with click event on tree list view.

Problem is that i do not want open tab Pista as u can see in image again.

i want to focus that open Pista tab.

Pls give ur suggestions.

Thanks.

Regards,

Shivang

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

深海夜未眠 2024-07-31 22:32:20

您可以有一个函数循环遍历选项卡以查看该选项卡是否已存在以及是否设置了 tabNavigators selectedIndex,如果它没有添加新选项卡

var tabFound:Boolean = false;
for(var i:int = 0; i < myTabNavigator.numChildren; i++)
{
    if(myTabNavigator.getChildAt(i) is myNewObj)
    {
       myTabNavigator.selectedIndex = i;
       tabFound = true;
       break;
    }
}
if(!tabFound)
{
    myTabNavigator.addChild(myNewObj);
}

我很快编写了该代码并没有测试它,但逻辑是类似的。

You could have a function that loops through the tabs to see if the tab already exists and if it does set the tabNavigators selectedIndex, if it doesnt add the new tab

var tabFound:Boolean = false;
for(var i:int = 0; i < myTabNavigator.numChildren; i++)
{
    if(myTabNavigator.getChildAt(i) is myNewObj)
    {
       myTabNavigator.selectedIndex = i;
       tabFound = true;
       break;
    }
}
if(!tabFound)
{
    myTabNavigator.addChild(myNewObj);
}

I quickly wrote that code up and didnt test it, but the logic would be similar.

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