Просто не хотел все показывать, дабы не замусоривать.
index.mxml

Код AS3:
<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/mx"
xmlns:local="*"
width="100%" height="100%">
<fx:Style>
@namespace mx "library://ns.adobe.com/flex/mx";
@namespace s "library://ns.adobe.com/flex/spark";
s|*
{
font-Family:Verdana;
font-size:11;
}
.errorTip {
borderColor: #0000FF;
paddingTop: 0;
paddingBottom: 0;
paddingLeft: 4;
paddingRight: 4;
fontWeight: bold;
fontSize: 9px;
backgroundColor: #0000ff;
cornerRadius: 8;
}
</fx:Style>
<fx:Script>
<![CDATA[
//Константы приложения
public static const srvUrl:String = "http://localhost/test";
public static const progVers:String = "v.2.0";
]]>
</fx:Script>
<s:HGroup horizontalAlign="right" width="100%">
<s:Label paddingTop="6" text="{progVers}"/>
</s:HGroup>
<mx:TabNavigator id="tabs" width="100%" height="100%" y="20">
<local:t1 width="100%" height="100%" label="Tab1"/>
<local:t2 width="100%" height="100%" label="Tab2"/>
</mx:TabNavigator>
</s:Application>
t1.mxml Частично все-таки урезал, т.к. слишком много кода. Самое основное отобразил. Надеюсь для диагностики этого достаточно.

Код AS3:
<?xml version="1.0" encoding="utf-8"?>
<s:NavigatorContent xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/mx"
xmlns:cookbook="cookbook.*"
minWidth="1200" minHeight="850">
<fx:Declarations>
<mx:DateValidator id="fieldInsertValidator" property="text" source="{fieldInsert}" inputFormat="YYYY-MM-DD" required="true"/>
</fx:Declarations>
<s:Form>
<s:FormItem><mx:DateField id="fieldInsert" formatString="YYYY-MM-DD" yearNavigationEnabled="true" editable="true"/></s:FormItem>
<s:FormItem label=""><s:Button id="insertButton" label="Add" /></s:FormItem>
</s:Form>
</s:NavigatorContent>