Rev | Line | |
---|
[1227] | 1 | <?xml version="1.0" encoding="utf-8"?>
|
---|
| 2 | <mx:VBox
|
---|
| 3 | xmlns:mx="http://www.adobe.com/2006/mxml"
|
---|
| 4 | xmlns:config="gov.va.med.edp.view.config.*"
|
---|
| 5 | xmlns:widget="gov.va.med.edp.widget.*"
|
---|
| 6 | width="100%" height="100%"
|
---|
| 7 | paddingBottom="6" paddingRight="6" paddingLeft="6" paddingTop="6"
|
---|
| 8 | creationComplete="loadConfig()"
|
---|
| 9 | styleName="contentArea" >
|
---|
| 10 |
|
---|
| 11 | <mx:Script>
|
---|
| 12 | <![CDATA[
|
---|
| 13 | import gov.va.med.edp.control.config.ConfigurationEvent;
|
---|
| 14 | import mx.managers.PopUpManager;
|
---|
| 15 | import gov.va.med.edp.view.HelpMessage;
|
---|
| 16 |
|
---|
| 17 | private function loadConfig(): void
|
---|
| 18 | {
|
---|
| 19 | var loadEvent: ConfigurationEvent = new ConfigurationEvent(ConfigurationEvent.EVENT_LOAD_CONFIGURATION);
|
---|
| 20 | loadEvent.dispatch();
|
---|
| 21 | }
|
---|
| 22 | ]]>
|
---|
| 23 | </mx:Script>
|
---|
| 24 |
|
---|
| 25 | <mx:Canvas width="100%">
|
---|
| 26 | <!-- linkbar was horizontalalign=center-->
|
---|
| 27 | <widget:LinkButtonTabBar dataProvider="configViews" tabStyleName="linkUnSelected" selectedTabTextStyleName="linkSelected" tabIndex="1000"/>
|
---|
| 28 | </mx:Canvas>
|
---|
| 29 |
|
---|
| 30 | <mx:ViewStack id="configViews" width="100%" height="100%">
|
---|
| 31 | <config:ConfigBeds id="configBeds" label="Room / Area" />
|
---|
| 32 | <config:ConfigBoard id="configBoard" label="Display Board" />
|
---|
| 33 | <config:ConfigColor id="configColor" label="Colors" />
|
---|
| 34 | <config:ConfigParams id="configParams" label="Parameters" />
|
---|
| 35 | <config:ConfigSelections id="configSelections" label="Selections" />
|
---|
| 36 | </mx:ViewStack>
|
---|
| 37 | </mx:VBox>
|
---|
Note:
See
TracBrowser
for help on using the repository browser.