My favorites | Sign in
Project Logo
                
Changes to /trunk/opportunities/src/com/tearaway_tea/opportunities/maps/NavigationEventMap.mxml
r0 vs. r3   Edit
  Compare: vs.   Format:
Revision r3
Go to: 
/trunk/opportunities/src/com/tearaway_tea/opportunities/maps/NavigationEventMap.mxml /trunk/opportunities/src/com/tearaway_tea/opportunities/maps/NavigationEventMap.mxml   r3
  1 <?xml version="1.0" encoding="utf-8"?>
  2 <EventMap
  3 xmlns="http://mate.asfusion.com/"
  4 xmlns:mx="http://www.adobe.com/2006/mxml">
  5
  6 <mx:Script>
  7 <![CDATA[
  8 import com.tearaway_tea.opportunities.data.OpportunityViewState;
  9 import com.tearaway_tea.opportunities.views.Index;
  10 import com.tearaway_tea.opportunities.events.NavigationEvent;
  11 ]]>
  12 </mx:Script>
  13
  14 <EventHandlers
  15 type="{NavigationEvent.NAVIGATE_LIST_VIEW}">
  16 <MethodInvoker
  17 generator="{OpportunityViewState}"
  18 method="setSelectedIndex"
  19 arguments="{[0]}" />
  20 </EventHandlers>
  21
  22 <EventHandlers
  23 type="{NavigationEvent.NAVIGATE_EDIT_VIEW}">
  24 <MethodInvoker
  25 generator="{OpportunityViewState}"
  26 method="setSelectedIndex"
  27 arguments="{[1]}" />
  28 </EventHandlers>
  29
  30 </EventMap>
Hosted by Google Code