source: EDIS/trunk/java/tracking-ui-core/src/main/flex/gov/va/med/edp/pt/demog/view/MessagePanel.mxml@ 1227

Last change on this file since 1227 was 1227, checked in by George Lilly, 13 years ago

initial load of EDIS 1.0

File size: 631 bytes
Line 
1<?xml version="1.0" ?>
2<mx:VBox xmlns:mx="http://www.adobe.com/2006/mxml" xmlns:widget="gov.va.med.edp.widget.*" height="100%">
3 <mx:Script><![CDATA[
4
5 [Bindable]
6 public var baseTabIndex:int;
7
8 [Bindable]
9 public var message:String;
10
11 [Bindable]
12 public var title:String;
13
14 ]]></mx:Script>
15 <widget:AccessibleLabel id="titleLabel" text="{title}" tabIndex="{baseTabIndex}" styleName="subTitle" accessibleText="{title}"/>
16 <mx:TextArea borderThickness="0" id="txtWarning" width="100%" height="100%" tabIndex="{baseTabIndex + 1}" text="{message}"/>
17</mx:VBox>
Note: See TracBrowser for help on using the repository browser.