对视图使用preventDefault

时间:2012-01-26 17:39:44

标签: actionscript-3 air flex-spark flash-builder4.5

我创建了一个简单的TabbedViewNavigatorApplication。其中两个选项卡将分别发送文本和电子邮件,而不是加载新的视图。所以我需要阻止推送新视图的默认行为。

文档说a view can cancel a navigation operation by canceling its FlexEvent.REMOVING。但是,FlexEvent显然没有这样的常数。但是,对于ViewNavigatorEvent,如第一个链接所描述的那样。

所以这就是我所拥有的,但我既没有看到跟踪声明也没有能够停止导航:

<?xml version="1.0" encoding="utf-8"?>
<s:TabbedViewNavigatorApplication xmlns:fx="http://ns.adobe.com/mxml/2009" 
xmlns:s="library://ns.adobe.com/flex/spark" applicationDPI="160" creationComplete="completeHandler(event)">
<fx:Script>
    <![CDATA[

        import mx.events.FlexEvent;

        import spark.events.ViewNavigatorEvent;

        private function completeHandler(e:Event):void
        {
            vwText.addEventListener(ViewNavigatorEvent.REMOVING, removingHandler);
        }

        private function removingHandler(e:ViewNavigatorEvent):void
        {
            trace("removingHandler::");
            e.preventDefault();
        }

        private function doSomething(e:MouseEvent):void
        {
            trace("Do Something");
        }

    ]]>
</fx:Script>
<s:ViewNavigator  id="vwText" label="Text" width="100%" height="100%" click="doSomething(event)" firstView="views.SendasTextView"/>
<s:ViewNavigator  label="Email" width="100%" height="100%"  firstView="views.SendasEmailView"/>
<s:ViewNavigator label="History" width="100%" height="100%" firstView="views.HistoryView"/>
<fx:Declarations>
    <!-- Place non-visual elements (e.g., services, value objects) here -->
</fx:Declarations>

1 个答案:

答案 0 :(得分:1)

你需要

vwText.addEventListener(ViewNavigatorEvent.REMOVING, doSomething);

你的脚本块。

它需要在函数内部。您可以使用creationComplete事件创建一个将添加该侦听器的init函数。