blob: 651b65b1a351439ee5b41ee5581d383cde290598 [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<mx:Application backgroundColor="0xFFFFFF" backgroundImage="" height="768" width="1024" xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" >
<!-- Embed fonts for cross platform compatibility of bitmap compares. -->
<mx:Style>
@font-face {
src: url("../../../../../Assets/Fonts/PT_Serif/PT_Serif-Web-Regular.ttf");
fontFamily: EmbeddedArial;
embedAsCFF: false;
}
@font-face {
src: url("../../../../../Assets/Fonts/PT_Serif/PT_Serif-Web-Bold.ttf");
fontWeight: bold;
fontFamily: EmbeddedArial;
embedAsCFF: false;
}
@font-face {
src: url("../../../../../Assets/Fonts/PT_Serif/PT_Serif-Web-Italic.ttf");
fontStyle: italic;
fontFamily: EmbeddedArial;
embedAsCFF: false;
}
@font-face {
src: url("../../../../../Assets/Fonts/Open_Sans/OpenSans-Regular.ttf");
fontFamily: EmbeddedVerdana;
embedAsCFF: false;
}
@font-face {
src: url("../../../../../Assets/Fonts/Open_Sans/OpenSans-Bold.ttf");
fontWeight: bold;
fontFamily: EmbeddedVerdana;
embedAsCFF: false;
}
@font-face {
src: url("../../../../../Assets/Fonts/Open_Sans/OpenSans-Italic.ttf");
fontStyle: italic;
fontFamily: EmbeddedVerdana;
embedAsCFF: false;
}
global{
fontFamily: EmbeddedVerdana;
fontAntiAliasType: normal;
}
</mx:Style>
<!--
Since we can't call ResetComponent, the way to avoid tainting is to create a DataGrid for
each test case we want to run. e.g. We want to run 5 tests, and there are 11 configurations,
so we have to create 55 DataGrids. These all have to fit on the screen in order to do
bitmap compares, so a ViewStack is used. Each configuration is a separate VBox
in the ViewStack.
Positions are absolute; hopefully the tests will be more robust if they have to
be edited. TODO: Figure out how to use localX and localY for mouse events
so that this will not be an issue.
-->
<!-- width: DG width * num columns of DGs + width of space between DGs. Same idea for height. -->
<mx:ViewStack id="vs" selectedIndex="{ns.value}" x="0" y="0" width="620" height="480" >
<!--=========================================================
Basic lockedRowCount tests, default lockedRowCount.
===========================================================-->
<mx:Canvas x="0" y="0">
<mx:DataGrid id="dg_mxml_config1_mouseover" height="235" width="200" x="0" y="0" >
<mx:dataProvider>
<mx:Array>
<mx:Object recordName="Tennis balls held in mouth by a dog" recordAmount="5" />
<mx:Object recordName="Loudest burp" recordAmount="104.9 decibels" />
<mx:Object recordName="Longest ear hair" recordAmount="13.2 cm" />
<mx:Object recordName="Longest tongue" recordAmount="9.5 cm" />
<mx:Object recordName="Furthest eyeball popper" recordAmount="11 mm" />
<mx:Object recordName="Longest lawn mower ride" recordAmount="23,487.5 km" />
<mx:Object recordName="Largest carved sapphire" recordAmount="80,500 carats" />
<mx:Object recordName="Largest cut diamond" recordAmount="555.55 carats" />
<mx:Object recordName="Longest golf cart" recordAmount="5.81 m" />
<mx:Object recordName="Soccer ball heading" recordAmount="8 hr 32 min 3 sec" />
<mx:Object recordName="Most touches in one minute with head" recordAmount="319" />
<mx:Object recordName="Largest millipede" recordAmount="38.7 cm" />
<mx:Object recordName="Fastest eater" recordAmount="Star-nosed mole (120 ms)" />
<mx:Object recordName="Highest jump by a pig" recordAmount="70 cm" />
<mx:Object recordName="Longest goldfish" recordAmount="47.4 cm" />
<mx:Object recordName="Largest omelette" recordAmount="2.95 metric tonnes" />
<mx:Object recordName="Largest tiramisu" recordAmount="216 kg" />
</mx:Array>
</mx:dataProvider>
<mx:columns>
<mx:DataGridColumn dataField="recordName" headerText="Record" />
<mx:DataGridColumn dataField="recordAmount" headerText="Amount" />
</mx:columns>
</mx:DataGrid>
<!--
<mx:DataGrid id="dg_mxml_config1_scrolldown" height="{dg_mxml_config1_mouseover.height}" width="{dg_mxml_config1_mouseover.width}"
x="{dg_mxml_config1_mouseover.width + 10}"
y="0" >
<mx:dataProvider>
<mx:Array>
<mx:Object recordName="Tennis balls held in mouth by a dog" recordAmount="5" />
<mx:Object recordName="Loudest burp" recordAmount="104.9 decibels" />
<mx:Object recordName="Longest ear hair" recordAmount="13.2 cm" />
<mx:Object recordName="Longest tongue" recordAmount="9.5 cm" />
<mx:Object recordName="Furthest eyeball popper" recordAmount="11 mm" />
<mx:Object recordName="Longest lawn mower ride" recordAmount="23,487.5 km" />
<mx:Object recordName="Largest carved sapphire" recordAmount="80,500 carats" />
<mx:Object recordName="Largest cut diamond" recordAmount="555.55 carats" />
<mx:Object recordName="Longest golf cart" recordAmount="5.81 m" />
<mx:Object recordName="Soccer ball heading" recordAmount="8 hr 32 min 3 sec" />
<mx:Object recordName="Most touches in one minute with head" recordAmount="319" />
<mx:Object recordName="Largest millipede" recordAmount="38.7 cm" />
<mx:Object recordName="Fastest eater" recordAmount="Star-nosed mole (120 ms)" />
<mx:Object recordName="Highest jump by a pig" recordAmount="70 cm" />
<mx:Object recordName="Longest goldfish" recordAmount="47.4 cm" />
<mx:Object recordName="Largest omelette" recordAmount="2.95 metric tonnes" />
<mx:Object recordName="Largest tiramisu" recordAmount="216 kg" />
</mx:Array>
</mx:dataProvider>
<mx:columns>
<mx:DataGridColumn dataField="recordName" headerText="Record" />
<mx:DataGridColumn dataField="recordAmount" headerText="Amount" />
</mx:columns>
</mx:DataGrid>
<mx:DataGrid id="dg_mxml_config1_scrollup" height="{dg_mxml_config1_mouseover.height}" width="{dg_mxml_config1_mouseover.width}"
x="{dg_mxml_config1_mouseover.width * 2 + 20}"
y="0" >
<mx:dataProvider>
<mx:Array>
<mx:Object recordName="Tennis balls held in mouth by a dog" recordAmount="5" />
<mx:Object recordName="Loudest burp" recordAmount="104.9 decibels" />
<mx:Object recordName="Longest ear hair" recordAmount="13.2 cm" />
<mx:Object recordName="Longest tongue" recordAmount="9.5 cm" />
<mx:Object recordName="Furthest eyeball popper" recordAmount="11 mm" />
<mx:Object recordName="Longest lawn mower ride" recordAmount="23,487.5 km" />
<mx:Object recordName="Largest carved sapphire" recordAmount="80,500 carats" />
<mx:Object recordName="Largest cut diamond" recordAmount="555.55 carats" />
<mx:Object recordName="Longest golf cart" recordAmount="5.81 m" />
<mx:Object recordName="Soccer ball heading" recordAmount="8 hr 32 min 3 sec" />
<mx:Object recordName="Most touches in one minute with head" recordAmount="319" />
<mx:Object recordName="Largest millipede" recordAmount="38.7 cm" />
<mx:Object recordName="Fastest eater" recordAmount="Star-nosed mole (120 ms)" />
<mx:Object recordName="Highest jump by a pig" recordAmount="70 cm" />
<mx:Object recordName="Longest goldfish" recordAmount="47.4 cm" />
<mx:Object recordName="Largest omelette" recordAmount="2.95 metric tonnes" />
<mx:Object recordName="Largest tiramisu" recordAmount="216 kg" />
</mx:Array>
</mx:dataProvider>
<mx:columns>
<mx:DataGridColumn dataField="recordName" headerText="Record" />
<mx:DataGridColumn dataField="recordAmount" headerText="Amount" />
</mx:columns>
</mx:DataGrid>
<mx:DataGrid id="dg_mxml_config1_sortleft" height="{dg_mxml_config1_mouseover.height}" width="{dg_mxml_config1_mouseover.width}"
x="0"
y="{dg_mxml_config1_mouseover.height + 10}" >
<mx:dataProvider>
<mx:Array>
<mx:Object recordName="Tennis balls held in mouth by a dog" recordAmount="5" />
<mx:Object recordName="Loudest burp" recordAmount="104.9 decibels" />
<mx:Object recordName="Longest ear hair" recordAmount="13.2 cm" />
<mx:Object recordName="Longest tongue" recordAmount="9.5 cm" />
<mx:Object recordName="Furthest eyeball popper" recordAmount="11 mm" />
<mx:Object recordName="Longest lawn mower ride" recordAmount="23,487.5 km" />
<mx:Object recordName="Largest carved sapphire" recordAmount="80,500 carats" />
<mx:Object recordName="Largest cut diamond" recordAmount="555.55 carats" />
<mx:Object recordName="Longest golf cart" recordAmount="5.81 m" />
<mx:Object recordName="Soccer ball heading" recordAmount="8 hr 32 min 3 sec" />
<mx:Object recordName="Most touches in one minute with head" recordAmount="319" />
<mx:Object recordName="Largest millipede" recordAmount="38.7 cm" />
<mx:Object recordName="Fastest eater" recordAmount="Star-nosed mole (120 ms)" />
<mx:Object recordName="Highest jump by a pig" recordAmount="70 cm" />
<mx:Object recordName="Longest goldfish" recordAmount="47.4 cm" />
<mx:Object recordName="Largest omelette" recordAmount="2.95 metric tonnes" />
<mx:Object recordName="Largest tiramisu" recordAmount="216 kg" />
</mx:Array>
</mx:dataProvider>
<mx:columns>
<mx:DataGridColumn dataField="recordName" headerText="Record" />
<mx:DataGridColumn dataField="recordAmount" headerText="Amount" />
</mx:columns>
</mx:DataGrid>
<mx:DataGrid id="dg_mxml_config1_sortright" height="{dg_mxml_config1_mouseover.height}" width="{dg_mxml_config1_mouseover.width}"
x="{dg_mxml_config1_mouseover.width + 10}"
y="{dg_mxml_config1_mouseover.height + 10}" >
<mx:dataProvider>
<mx:Array>
<mx:Object recordName="Tennis balls held in mouth by a dog" recordAmount="5" />
<mx:Object recordName="Loudest burp" recordAmount="104.9 decibels" />
<mx:Object recordName="Longest ear hair" recordAmount="13.2 cm" />
<mx:Object recordName="Longest tongue" recordAmount="9.5 cm" />
<mx:Object recordName="Furthest eyeball popper" recordAmount="11 mm" />
<mx:Object recordName="Longest lawn mower ride" recordAmount="23,487.5 km" />
<mx:Object recordName="Largest carved sapphire" recordAmount="80,500 carats" />
<mx:Object recordName="Largest cut diamond" recordAmount="555.55 carats" />
<mx:Object recordName="Longest golf cart" recordAmount="5.81 m" />
<mx:Object recordName="Soccer ball heading" recordAmount="8 hr 32 min 3 sec" />
<mx:Object recordName="Most touches in one minute with head" recordAmount="319" />
<mx:Object recordName="Largest millipede" recordAmount="38.7 cm" />
<mx:Object recordName="Fastest eater" recordAmount="Star-nosed mole (120 ms)" />
<mx:Object recordName="Highest jump by a pig" recordAmount="70 cm" />
<mx:Object recordName="Longest goldfish" recordAmount="47.4 cm" />
<mx:Object recordName="Largest omelette" recordAmount="2.95 metric tonnes" />
<mx:Object recordName="Largest tiramisu" recordAmount="216 kg" />
</mx:Array>
</mx:dataProvider>
<mx:columns>
<mx:DataGridColumn dataField="recordName" headerText="Record" />
<mx:DataGridColumn dataField="recordAmount" headerText="Amount" />
</mx:columns>
</mx:DataGrid>
-->
</mx:Canvas>
<!--=========================================================
Basic lockedRowCount tests, lockedRowCount=1.
===========================================================-->
<mx:Canvas>
<mx:DataGrid id="dg_mxml_config2_mouseover" height="{dg_mxml_config1_mouseover.height}" width="{dg_mxml_config1_mouseover.width}" lockedRowCount="1"
x="0"
y="0" >
<mx:dataProvider>
<mx:Array>
<mx:Object recordName="Tennis balls held in mouth by a dog" recordAmount="5" />
<mx:Object recordName="Loudest burp" recordAmount="104.9 decibels" />
<mx:Object recordName="Longest ear hair" recordAmount="13.2 cm" />
<mx:Object recordName="Longest tongue" recordAmount="9.5 cm" />
<mx:Object recordName="Furthest eyeball popper" recordAmount="11 mm" />
<mx:Object recordName="Longest lawn mower ride" recordAmount="23,487.5 km" />
<mx:Object recordName="Largest carved sapphire" recordAmount="80,500 carats" />
<mx:Object recordName="Largest cut diamond" recordAmount="555.55 carats" />
<mx:Object recordName="Longest golf cart" recordAmount="5.81 m" />
<mx:Object recordName="Soccer ball heading" recordAmount="8 hr 32 min 3 sec" />
<mx:Object recordName="Most touches in one minute with head" recordAmount="319" />
<mx:Object recordName="Largest millipede" recordAmount="38.7 cm" />
<mx:Object recordName="Fastest eater" recordAmount="Star-nosed mole (120 ms)" />
<mx:Object recordName="Highest jump by a pig" recordAmount="70 cm" />
<mx:Object recordName="Longest goldfish" recordAmount="47.4 cm" />
<mx:Object recordName="Largest omelette" recordAmount="2.95 metric tonnes" />
<mx:Object recordName="Largest tiramisu" recordAmount="216 kg" />
</mx:Array>
</mx:dataProvider>
<mx:columns>
<mx:DataGridColumn dataField="recordName" headerText="Record" />
<mx:DataGridColumn dataField="recordAmount" headerText="Amount" />
</mx:columns>
</mx:DataGrid>
<mx:DataGrid id="dg_mxml_config2_scrolldown" height="{dg_mxml_config1_mouseover.height}" width="{dg_mxml_config1_mouseover.width}" lockedRowCount="1"
x="{dg_mxml_config1_mouseover.width + 10}"
y="0" >
<mx:dataProvider>
<mx:Array>
<mx:Object recordName="Tennis balls held in mouth by a dog" recordAmount="5" />
<mx:Object recordName="Loudest burp" recordAmount="104.9 decibels" />
<mx:Object recordName="Longest ear hair" recordAmount="13.2 cm" />
<mx:Object recordName="Longest tongue" recordAmount="9.5 cm" />
<mx:Object recordName="Furthest eyeball popper" recordAmount="11 mm" />
<mx:Object recordName="Longest lawn mower ride" recordAmount="23,487.5 km" />
<mx:Object recordName="Largest carved sapphire" recordAmount="80,500 carats" />
<mx:Object recordName="Largest cut diamond" recordAmount="555.55 carats" />
<mx:Object recordName="Longest golf cart" recordAmount="5.81 m" />
<mx:Object recordName="Soccer ball heading" recordAmount="8 hr 32 min 3 sec" />
<mx:Object recordName="Most touches in one minute with head" recordAmount="319" />
<mx:Object recordName="Largest millipede" recordAmount="38.7 cm" />
<mx:Object recordName="Fastest eater" recordAmount="Star-nosed mole (120 ms)" />
<mx:Object recordName="Highest jump by a pig" recordAmount="70 cm" />
<mx:Object recordName="Longest goldfish" recordAmount="47.4 cm" />
<mx:Object recordName="Largest omelette" recordAmount="2.95 metric tonnes" />
<mx:Object recordName="Largest tiramisu" recordAmount="216 kg" />
</mx:Array>
</mx:dataProvider>
<mx:columns>
<mx:DataGridColumn dataField="recordName" headerText="Record" />
<mx:DataGridColumn dataField="recordAmount" headerText="Amount" />
</mx:columns>
</mx:DataGrid>
<mx:DataGrid id="dg_mxml_config2_scrollup" height="{dg_mxml_config1_mouseover.height}" width="{dg_mxml_config1_mouseover.width}" lockedRowCount="1"
x="{dg_mxml_config1_mouseover.width * 2 + 20}"
y="0" >
<mx:dataProvider>
<mx:Array>
<mx:Object recordName="Tennis balls held in mouth by a dog" recordAmount="5" />
<mx:Object recordName="Loudest burp" recordAmount="104.9 decibels" />
<mx:Object recordName="Longest ear hair" recordAmount="13.2 cm" />
<mx:Object recordName="Longest tongue" recordAmount="9.5 cm" />
<mx:Object recordName="Furthest eyeball popper" recordAmount="11 mm" />
<mx:Object recordName="Longest lawn mower ride" recordAmount="23,487.5 km" />
<mx:Object recordName="Largest carved sapphire" recordAmount="80,500 carats" />
<mx:Object recordName="Largest cut diamond" recordAmount="555.55 carats" />
<mx:Object recordName="Longest golf cart" recordAmount="5.81 m" />
<mx:Object recordName="Soccer ball heading" recordAmount="8 hr 32 min 3 sec" />
<mx:Object recordName="Most touches in one minute with head" recordAmount="319" />
<mx:Object recordName="Largest millipede" recordAmount="38.7 cm" />
<mx:Object recordName="Fastest eater" recordAmount="Star-nosed mole (120 ms)" />
<mx:Object recordName="Highest jump by a pig" recordAmount="70 cm" />
<mx:Object recordName="Longest goldfish" recordAmount="47.4 cm" />
<mx:Object recordName="Largest omelette" recordAmount="2.95 metric tonnes" />
<mx:Object recordName="Largest tiramisu" recordAmount="216 kg" />
</mx:Array>
</mx:dataProvider>
<mx:columns>
<mx:DataGridColumn dataField="recordName" headerText="Record" />
<mx:DataGridColumn dataField="recordAmount" headerText="Amount" />
</mx:columns>
</mx:DataGrid>
<mx:DataGrid id="dg_mxml_config2_sortleft" height="{dg_mxml_config1_mouseover.height}" width="{dg_mxml_config1_mouseover.width}" lockedRowCount="1"
x="0"
y="{dg_mxml_config1_mouseover.height + 10}" >
<mx:dataProvider>
<mx:Array>
<mx:Object recordName="Tennis balls held in mouth by a dog" recordAmount="5" />
<mx:Object recordName="Loudest burp" recordAmount="104.9 decibels" />
<mx:Object recordName="Longest ear hair" recordAmount="13.2 cm" />
<mx:Object recordName="Longest tongue" recordAmount="9.5 cm" />
<mx:Object recordName="Furthest eyeball popper" recordAmount="11 mm" />
<mx:Object recordName="Longest lawn mower ride" recordAmount="23,487.5 km" />
<mx:Object recordName="Largest carved sapphire" recordAmount="80,500 carats" />
<mx:Object recordName="Largest cut diamond" recordAmount="555.55 carats" />
<mx:Object recordName="Longest golf cart" recordAmount="5.81 m" />
<mx:Object recordName="Soccer ball heading" recordAmount="8 hr 32 min 3 sec" />
<mx:Object recordName="Most touches in one minute with head" recordAmount="319" />
<mx:Object recordName="Largest millipede" recordAmount="38.7 cm" />
<mx:Object recordName="Fastest eater" recordAmount="Star-nosed mole (120 ms)" />
<mx:Object recordName="Highest jump by a pig" recordAmount="70 cm" />
<mx:Object recordName="Longest goldfish" recordAmount="47.4 cm" />
<mx:Object recordName="Largest omelette" recordAmount="2.95 metric tonnes" />
<mx:Object recordName="Largest tiramisu" recordAmount="216 kg" />
</mx:Array>
</mx:dataProvider>
<mx:columns>
<mx:DataGridColumn dataField="recordName" headerText="Record" />
<mx:DataGridColumn dataField="recordAmount" headerText="Amount" />
</mx:columns>
</mx:DataGrid>
<mx:DataGrid id="dg_mxml_config2_sortright" height="{dg_mxml_config1_mouseover.height}" width="{dg_mxml_config1_mouseover.width}" lockedRowCount="1"
x="{dg_mxml_config1_mouseover.width + 10}"
y="{dg_mxml_config1_mouseover.height + 10}" >
<mx:dataProvider>
<mx:Array>
<mx:Object recordName="Tennis balls held in mouth by a dog" recordAmount="5" />
<mx:Object recordName="Loudest burp" recordAmount="104.9 decibels" />
<mx:Object recordName="Longest ear hair" recordAmount="13.2 cm" />
<mx:Object recordName="Longest tongue" recordAmount="9.5 cm" />
<mx:Object recordName="Furthest eyeball popper" recordAmount="11 mm" />
<mx:Object recordName="Longest lawn mower ride" recordAmount="23,487.5 km" />
<mx:Object recordName="Largest carved sapphire" recordAmount="80,500 carats" />
<mx:Object recordName="Largest cut diamond" recordAmount="555.55 carats" />
<mx:Object recordName="Longest golf cart" recordAmount="5.81 m" />
<mx:Object recordName="Soccer ball heading" recordAmount="8 hr 32 min 3 sec" />
<mx:Object recordName="Most touches in one minute with head" recordAmount="319" />
<mx:Object recordName="Largest millipede" recordAmount="38.7 cm" />
<mx:Object recordName="Fastest eater" recordAmount="Star-nosed mole (120 ms)" />
<mx:Object recordName="Highest jump by a pig" recordAmount="70 cm" />
<mx:Object recordName="Longest goldfish" recordAmount="47.4 cm" />
<mx:Object recordName="Largest omelette" recordAmount="2.95 metric tonnes" />
<mx:Object recordName="Largest tiramisu" recordAmount="216 kg" />
</mx:Array>
</mx:dataProvider>
<mx:columns>
<mx:DataGridColumn dataField="recordName" headerText="Record" />
<mx:DataGridColumn dataField="recordAmount" headerText="Amount" />
</mx:columns>
</mx:DataGrid>
<mx:DataGrid id="dg_mxml_config2_nodata" lockedRowCount="1" height="{dg_mxml_config1_mouseover.height}"
width="{dg_mxml_config1_mouseover.width}"
x="{2 * (dg_mxml_config1_mouseover.width + 10)}"
y="{dg_mxml_config1_mouseover.height + 10}" />
</mx:Canvas>
<!--=========================================================
Basic lockedRowCount tests, lockedRowCount=3.
===========================================================-->
<mx:Canvas>
<mx:DataGrid id="dg_mxml_config3_mouseover" height="{dg_mxml_config1_mouseover.height}" width="{dg_mxml_config1_mouseover.width}" lockedRowCount="3"
x="0"
y="0" >
<mx:dataProvider>
<mx:Array>
<mx:Object recordName="Tennis balls held in mouth by a dog" recordAmount="5" />
<mx:Object recordName="Loudest burp" recordAmount="104.9 decibels" />
<mx:Object recordName="Longest ear hair" recordAmount="13.2 cm" />
<mx:Object recordName="Longest tongue" recordAmount="9.5 cm" />
<mx:Object recordName="Furthest eyeball popper" recordAmount="11 mm" />
<mx:Object recordName="Longest lawn mower ride" recordAmount="23,487.5 km" />
<mx:Object recordName="Largest carved sapphire" recordAmount="80,500 carats" />
<mx:Object recordName="Largest cut diamond" recordAmount="555.55 carats" />
<mx:Object recordName="Longest golf cart" recordAmount="5.81 m" />
<mx:Object recordName="Soccer ball heading" recordAmount="8 hr 32 min 3 sec" />
<mx:Object recordName="Most touches in one minute with head" recordAmount="319" />
<mx:Object recordName="Largest millipede" recordAmount="38.7 cm" />
<mx:Object recordName="Fastest eater" recordAmount="Star-nosed mole (120 ms)" />
<mx:Object recordName="Highest jump by a pig" recordAmount="70 cm" />
<mx:Object recordName="Longest goldfish" recordAmount="47.4 cm" />
<mx:Object recordName="Largest omelette" recordAmount="2.95 metric tonnes" />
<mx:Object recordName="Largest tiramisu" recordAmount="216 kg" />
</mx:Array>
</mx:dataProvider>
<mx:columns>
<mx:DataGridColumn dataField="recordName" headerText="Record" />
<mx:DataGridColumn dataField="recordAmount" headerText="Amount" />
</mx:columns>
</mx:DataGrid>
<mx:DataGrid id="dg_mxml_config3_scrolldown" height="{dg_mxml_config1_mouseover.height}" width="{dg_mxml_config1_mouseover.width}" lockedRowCount="3"
x="{dg_mxml_config1_mouseover.width + 10}"
y="0" >
<mx:dataProvider>
<mx:Array>
<mx:Object recordName="Tennis balls held in mouth by a dog" recordAmount="5" />
<mx:Object recordName="Loudest burp" recordAmount="104.9 decibels" />
<mx:Object recordName="Longest ear hair" recordAmount="13.2 cm" />
<mx:Object recordName="Longest tongue" recordAmount="9.5 cm" />
<mx:Object recordName="Furthest eyeball popper" recordAmount="11 mm" />
<mx:Object recordName="Longest lawn mower ride" recordAmount="23,487.5 km" />
<mx:Object recordName="Largest carved sapphire" recordAmount="80,500 carats" />
<mx:Object recordName="Largest cut diamond" recordAmount="555.55 carats" />
<mx:Object recordName="Longest golf cart" recordAmount="5.81 m" />
<mx:Object recordName="Soccer ball heading" recordAmount="8 hr 32 min 3 sec" />
<mx:Object recordName="Most touches in one minute with head" recordAmount="319" />
<mx:Object recordName="Largest millipede" recordAmount="38.7 cm" />
<mx:Object recordName="Fastest eater" recordAmount="Star-nosed mole (120 ms)" />
<mx:Object recordName="Highest jump by a pig" recordAmount="70 cm" />
<mx:Object recordName="Longest goldfish" recordAmount="47.4 cm" />
<mx:Object recordName="Largest omelette" recordAmount="2.95 metric tonnes" />
<mx:Object recordName="Largest tiramisu" recordAmount="216 kg" />
</mx:Array>
</mx:dataProvider>
<mx:columns>
<mx:DataGridColumn dataField="recordName" headerText="Record" />
<mx:DataGridColumn dataField="recordAmount" headerText="Amount" />
</mx:columns>
</mx:DataGrid>
<mx:DataGrid id="dg_mxml_config3_scrollup" height="{dg_mxml_config1_mouseover.height}" width="{dg_mxml_config1_mouseover.width}" lockedRowCount="3"
x="{dg_mxml_config1_mouseover.width * 2 + 20}"
y="0" >
<mx:dataProvider>
<mx:Array>
<mx:Object recordName="Tennis balls held in mouth by a dog" recordAmount="5" />
<mx:Object recordName="Loudest burp" recordAmount="104.9 decibels" />
<mx:Object recordName="Longest ear hair" recordAmount="13.2 cm" />
<mx:Object recordName="Longest tongue" recordAmount="9.5 cm" />
<mx:Object recordName="Furthest eyeball popper" recordAmount="11 mm" />
<mx:Object recordName="Longest lawn mower ride" recordAmount="23,487.5 km" />
<mx:Object recordName="Largest carved sapphire" recordAmount="80,500 carats" />
<mx:Object recordName="Largest cut diamond" recordAmount="555.55 carats" />
<mx:Object recordName="Longest golf cart" recordAmount="5.81 m" />
<mx:Object recordName="Soccer ball heading" recordAmount="8 hr 32 min 3 sec" />
<mx:Object recordName="Most touches in one minute with head" recordAmount="319" />
<mx:Object recordName="Largest millipede" recordAmount="38.7 cm" />
<mx:Object recordName="Fastest eater" recordAmount="Star-nosed mole (120 ms)" />
<mx:Object recordName="Highest jump by a pig" recordAmount="70 cm" />
<mx:Object recordName="Longest goldfish" recordAmount="47.4 cm" />
<mx:Object recordName="Largest omelette" recordAmount="2.95 metric tonnes" />
<mx:Object recordName="Largest tiramisu" recordAmount="216 kg" />
</mx:Array>
</mx:dataProvider>
<mx:columns>
<mx:DataGridColumn dataField="recordName" headerText="Record" />
<mx:DataGridColumn dataField="recordAmount" headerText="Amount" />
</mx:columns>
</mx:DataGrid>
<mx:DataGrid id="dg_mxml_config3_sortleft" height="{dg_mxml_config1_mouseover.height}" width="{dg_mxml_config1_mouseover.width}" lockedRowCount="3"
x="0"
y="{dg_mxml_config1_mouseover.height + 10}" >
<mx:dataProvider>
<mx:Array>
<mx:Object recordName="Tennis balls held in mouth by a dog" recordAmount="5" />
<mx:Object recordName="Loudest burp" recordAmount="104.9 decibels" />
<mx:Object recordName="Longest ear hair" recordAmount="13.2 cm" />
<mx:Object recordName="Longest tongue" recordAmount="9.5 cm" />
<mx:Object recordName="Furthest eyeball popper" recordAmount="11 mm" />
<mx:Object recordName="Longest lawn mower ride" recordAmount="23,487.5 km" />
<mx:Object recordName="Largest carved sapphire" recordAmount="80,500 carats" />
<mx:Object recordName="Largest cut diamond" recordAmount="555.55 carats" />
<mx:Object recordName="Longest golf cart" recordAmount="5.81 m" />
<mx:Object recordName="Soccer ball heading" recordAmount="8 hr 32 min 3 sec" />
<mx:Object recordName="Most touches in one minute with head" recordAmount="319" />
<mx:Object recordName="Largest millipede" recordAmount="38.7 cm" />
<mx:Object recordName="Fastest eater" recordAmount="Star-nosed mole (120 ms)" />
<mx:Object recordName="Highest jump by a pig" recordAmount="70 cm" />
<mx:Object recordName="Longest goldfish" recordAmount="47.4 cm" />
<mx:Object recordName="Largest omelette" recordAmount="2.95 metric tonnes" />
<mx:Object recordName="Largest tiramisu" recordAmount="216 kg" />
</mx:Array>
</mx:dataProvider>
<mx:columns>
<mx:DataGridColumn dataField="recordName" headerText="Record" />
<mx:DataGridColumn dataField="recordAmount" headerText="Amount" />
</mx:columns>
</mx:DataGrid>
<mx:DataGrid id="dg_mxml_config3_sortright" height="{dg_mxml_config1_mouseover.height}" width="{dg_mxml_config1_mouseover.width}" lockedRowCount="3"
x="{dg_mxml_config1_mouseover.width + 10}"
y="{dg_mxml_config1_mouseover.height + 10}" >
<mx:dataProvider>
<mx:Array>
<mx:Object recordName="Tennis balls held in mouth by a dog" recordAmount="5" />
<mx:Object recordName="Loudest burp" recordAmount="104.9 decibels" />
<mx:Object recordName="Longest ear hair" recordAmount="13.2 cm" />
<mx:Object recordName="Longest tongue" recordAmount="9.5 cm" />
<mx:Object recordName="Furthest eyeball popper" recordAmount="11 mm" />
<mx:Object recordName="Longest lawn mower ride" recordAmount="23,487.5 km" />
<mx:Object recordName="Largest carved sapphire" recordAmount="80,500 carats" />
<mx:Object recordName="Largest cut diamond" recordAmount="555.55 carats" />
<mx:Object recordName="Longest golf cart" recordAmount="5.81 m" />
<mx:Object recordName="Soccer ball heading" recordAmount="8 hr 32 min 3 sec" />
<mx:Object recordName="Most touches in one minute with head" recordAmount="319" />
<mx:Object recordName="Largest millipede" recordAmount="38.7 cm" />
<mx:Object recordName="Fastest eater" recordAmount="Star-nosed mole (120 ms)" />
<mx:Object recordName="Highest jump by a pig" recordAmount="70 cm" />
<mx:Object recordName="Longest goldfish" recordAmount="47.4 cm" />
<mx:Object recordName="Largest omelette" recordAmount="2.95 metric tonnes" />
<mx:Object recordName="Largest tiramisu" recordAmount="216 kg" />
</mx:Array>
</mx:dataProvider>
<mx:columns>
<mx:DataGridColumn dataField="recordName" headerText="Record" />
<mx:DataGridColumn dataField="recordAmount" headerText="Amount" />
</mx:columns>
</mx:DataGrid>
</mx:Canvas>
<!--=========================================================
Combine lockedRowCount and headerWordWrap, lockedRowCount=1.
===========================================================-->
<mx:Canvas>
<mx:DataGrid id="dg_mxml_config4_mouseover" height="{dg_mxml_config1_mouseover.height}" width="{dg_mxml_config1_mouseover.width}" lockedRowCount="1"
x="0"
y="0" >
<mx:dataProvider>
<mx:Array>
<mx:Object recordName="Tennis balls held in mouth by a dog" recordAmount="5" />
<mx:Object recordName="Loudest burp" recordAmount="104.9 decibels" />
<mx:Object recordName="Longest ear hair" recordAmount="13.2 cm" />
<mx:Object recordName="Longest tongue" recordAmount="9.5 cm" />
<mx:Object recordName="Furthest eyeball popper" recordAmount="11 mm" />
<mx:Object recordName="Longest lawn mower ride" recordAmount="23,487.5 km" />
<mx:Object recordName="Largest carved sapphire" recordAmount="80,500 carats" />
<mx:Object recordName="Largest cut diamond" recordAmount="555.55 carats" />
<mx:Object recordName="Longest golf cart" recordAmount="5.81 m" />
<mx:Object recordName="Soccer ball heading" recordAmount="8 hr 32 min 3 sec" />
<mx:Object recordName="Most touches in one minute with head" recordAmount="319" />
<mx:Object recordName="Largest millipede" recordAmount="38.7 cm" />
<mx:Object recordName="Fastest eater" recordAmount="Star-nosed mole (120 ms)" />
<mx:Object recordName="Highest jump by a pig" recordAmount="70 cm" />
<mx:Object recordName="Longest goldfish" recordAmount="47.4 cm" />
<mx:Object recordName="Largest omelette" recordAmount="2.95 metric tonnes" />
<mx:Object recordName="Largest tiramisu" recordAmount="216 kg" />
</mx:Array>
</mx:dataProvider>
<mx:columns>
<mx:DataGridColumn dataField="recordName" headerText="The Name of the World Record" headerWordWrap="true" />
<mx:DataGridColumn dataField="recordAmount" headerText="The Amount of the Metric Being Measured" headerWordWrap="true" />
</mx:columns>
</mx:DataGrid>
<mx:DataGrid id="dg_mxml_config4_scrolldown" height="{dg_mxml_config1_mouseover.height}" width="{dg_mxml_config1_mouseover.width}" lockedRowCount="1"
x="{dg_mxml_config1_mouseover.width + 10}"
y="0" >
<mx:dataProvider>
<mx:Array>
<mx:Object recordName="Tennis balls held in mouth by a dog" recordAmount="5" />
<mx:Object recordName="Loudest burp" recordAmount="104.9 decibels" />
<mx:Object recordName="Longest ear hair" recordAmount="13.2 cm" />
<mx:Object recordName="Longest tongue" recordAmount="9.5 cm" />
<mx:Object recordName="Furthest eyeball popper" recordAmount="11 mm" />
<mx:Object recordName="Longest lawn mower ride" recordAmount="23,487.5 km" />
<mx:Object recordName="Largest carved sapphire" recordAmount="80,500 carats" />
<mx:Object recordName="Largest cut diamond" recordAmount="555.55 carats" />
<mx:Object recordName="Longest golf cart" recordAmount="5.81 m" />
<mx:Object recordName="Soccer ball heading" recordAmount="8 hr 32 min 3 sec" />
<mx:Object recordName="Most touches in one minute with head" recordAmount="319" />
<mx:Object recordName="Largest millipede" recordAmount="38.7 cm" />
<mx:Object recordName="Fastest eater" recordAmount="Star-nosed mole (120 ms)" />
<mx:Object recordName="Highest jump by a pig" recordAmount="70 cm" />
<mx:Object recordName="Longest goldfish" recordAmount="47.4 cm" />
<mx:Object recordName="Largest omelette" recordAmount="2.95 metric tonnes" />
<mx:Object recordName="Largest tiramisu" recordAmount="216 kg" />
</mx:Array>
</mx:dataProvider>
<mx:columns>
<mx:DataGridColumn dataField="recordName" headerText="The Name of the World Record" headerWordWrap="true" />
<mx:DataGridColumn dataField="recordAmount" headerText="The Amount of the Metric Being Measured" headerWordWrap="true" />
</mx:columns>
</mx:DataGrid>
<mx:DataGrid id="dg_mxml_config4_scrollup" height="{dg_mxml_config1_mouseover.height}" width="{dg_mxml_config1_mouseover.width}" lockedRowCount="1"
x="{dg_mxml_config1_mouseover.width * 2 + 20}"
y="0" >
<mx:dataProvider>
<mx:Array>
<mx:Object recordName="Tennis balls held in mouth by a dog" recordAmount="5" />
<mx:Object recordName="Loudest burp" recordAmount="104.9 decibels" />
<mx:Object recordName="Longest ear hair" recordAmount="13.2 cm" />
<mx:Object recordName="Longest tongue" recordAmount="9.5 cm" />
<mx:Object recordName="Furthest eyeball popper" recordAmount="11 mm" />
<mx:Object recordName="Longest lawn mower ride" recordAmount="23,487.5 km" />
<mx:Object recordName="Largest carved sapphire" recordAmount="80,500 carats" />
<mx:Object recordName="Largest cut diamond" recordAmount="555.55 carats" />
<mx:Object recordName="Longest golf cart" recordAmount="5.81 m" />
<mx:Object recordName="Soccer ball heading" recordAmount="8 hr 32 min 3 sec" />
<mx:Object recordName="Most touches in one minute with head" recordAmount="319" />
<mx:Object recordName="Largest millipede" recordAmount="38.7 cm" />
<mx:Object recordName="Fastest eater" recordAmount="Star-nosed mole (120 ms)" />
<mx:Object recordName="Highest jump by a pig" recordAmount="70 cm" />
<mx:Object recordName="Longest goldfish" recordAmount="47.4 cm" />
<mx:Object recordName="Largest omelette" recordAmount="2.95 metric tonnes" />
<mx:Object recordName="Largest tiramisu" recordAmount="216 kg" />
</mx:Array>
</mx:dataProvider>
<mx:columns>
<mx:DataGridColumn dataField="recordName" headerText="The Name of the World Record" headerWordWrap="true" />
<mx:DataGridColumn dataField="recordAmount" headerText="The Amount of the Metric Being Measured" headerWordWrap="true" />
</mx:columns>
</mx:DataGrid>
<mx:DataGrid id="dg_mxml_config4_sortleft" height="{dg_mxml_config1_mouseover.height}" width="{dg_mxml_config1_mouseover.width}" lockedRowCount="1"
x="0"
y="{dg_mxml_config1_mouseover.height + 10}" >
<mx:dataProvider>
<mx:Array>
<mx:Object recordName="Tennis balls held in mouth by a dog" recordAmount="5" />
<mx:Object recordName="Loudest burp" recordAmount="104.9 decibels" />
<mx:Object recordName="Longest ear hair" recordAmount="13.2 cm" />
<mx:Object recordName="Longest tongue" recordAmount="9.5 cm" />
<mx:Object recordName="Furthest eyeball popper" recordAmount="11 mm" />
<mx:Object recordName="Longest lawn mower ride" recordAmount="23,487.5 km" />
<mx:Object recordName="Largest carved sapphire" recordAmount="80,500 carats" />
<mx:Object recordName="Largest cut diamond" recordAmount="555.55 carats" />
<mx:Object recordName="Longest golf cart" recordAmount="5.81 m" />
<mx:Object recordName="Soccer ball heading" recordAmount="8 hr 32 min 3 sec" />
<mx:Object recordName="Most touches in one minute with head" recordAmount="319" />
<mx:Object recordName="Largest millipede" recordAmount="38.7 cm" />
<mx:Object recordName="Fastest eater" recordAmount="Star-nosed mole (120 ms)" />
<mx:Object recordName="Highest jump by a pig" recordAmount="70 cm" />
<mx:Object recordName="Longest goldfish" recordAmount="47.4 cm" />
<mx:Object recordName="Largest omelette" recordAmount="2.95 metric tonnes" />
<mx:Object recordName="Largest tiramisu" recordAmount="216 kg" />
</mx:Array>
</mx:dataProvider>
<mx:columns>
<mx:DataGridColumn dataField="recordName" headerText="The Name of the World Record" headerWordWrap="true" />
<mx:DataGridColumn dataField="recordAmount" headerText="The Amount of the Metric Being Measured" headerWordWrap="true" />
</mx:columns>
</mx:DataGrid>
<mx:DataGrid id="dg_mxml_config4_sortright" height="{dg_mxml_config1_mouseover.height}" width="{dg_mxml_config1_mouseover.width}" lockedRowCount="1"
x="{dg_mxml_config1_mouseover.width + 10}"
y="{dg_mxml_config1_mouseover.height + 10}" >
<mx:dataProvider>
<mx:Array>
<mx:Object recordName="Tennis balls held in mouth by a dog" recordAmount="5" />
<mx:Object recordName="Loudest burp" recordAmount="104.9 decibels" />
<mx:Object recordName="Longest ear hair" recordAmount="13.2 cm" />
<mx:Object recordName="Longest tongue" recordAmount="9.5 cm" />
<mx:Object recordName="Furthest eyeball popper" recordAmount="11 mm" />
<mx:Object recordName="Longest lawn mower ride" recordAmount="23,487.5 km" />
<mx:Object recordName="Largest carved sapphire" recordAmount="80,500 carats" />
<mx:Object recordName="Largest cut diamond" recordAmount="555.55 carats" />
<mx:Object recordName="Longest golf cart" recordAmount="5.81 m" />
<mx:Object recordName="Soccer ball heading" recordAmount="8 hr 32 min 3 sec" />
<mx:Object recordName="Most touches in one minute with head" recordAmount="319" />
<mx:Object recordName="Largest millipede" recordAmount="38.7 cm" />
<mx:Object recordName="Fastest eater" recordAmount="Star-nosed mole (120 ms)" />
<mx:Object recordName="Highest jump by a pig" recordAmount="70 cm" />
<mx:Object recordName="Longest goldfish" recordAmount="47.4 cm" />
<mx:Object recordName="Largest omelette" recordAmount="2.95 metric tonnes" />
<mx:Object recordName="Largest tiramisu" recordAmount="216 kg" />
</mx:Array>
</mx:dataProvider>
<mx:columns>
<mx:DataGridColumn dataField="recordName" headerText="The Name of the World Record" headerWordWrap="true" />
<mx:DataGridColumn dataField="recordAmount" headerText="The Amount of the Metric Being Measured" headerWordWrap="true" />
</mx:columns>
</mx:DataGrid>
</mx:Canvas>
<!--=========================================================
Combine lockedRowCount and headerWordWrap, lockedRowCount=3.
===========================================================-->
<mx:Canvas>
<mx:DataGrid id="dg_mxml_config5_mouseover" height="{dg_mxml_config1_mouseover.height}" width="{dg_mxml_config1_mouseover.width}" lockedRowCount="3"
x="0"
y="0" >
<mx:dataProvider>
<mx:Array>
<mx:Object recordName="Tennis balls held in mouth by a dog" recordAmount="5" />
<mx:Object recordName="Loudest burp" recordAmount="104.9 decibels" />
<mx:Object recordName="Longest ear hair" recordAmount="13.2 cm" />
<mx:Object recordName="Longest tongue" recordAmount="9.5 cm" />
<mx:Object recordName="Furthest eyeball popper" recordAmount="11 mm" />
<mx:Object recordName="Longest lawn mower ride" recordAmount="23,487.5 km" />
<mx:Object recordName="Largest carved sapphire" recordAmount="80,500 carats" />
<mx:Object recordName="Largest cut diamond" recordAmount="555.55 carats" />
<mx:Object recordName="Longest golf cart" recordAmount="5.81 m" />
<mx:Object recordName="Soccer ball heading" recordAmount="8 hr 32 min 3 sec" />
<mx:Object recordName="Most touches in one minute with head" recordAmount="319" />
<mx:Object recordName="Largest millipede" recordAmount="38.7 cm" />
<mx:Object recordName="Fastest eater" recordAmount="Star-nosed mole (120 ms)" />
<mx:Object recordName="Highest jump by a pig" recordAmount="70 cm" />
<mx:Object recordName="Longest goldfish" recordAmount="47.4 cm" />
<mx:Object recordName="Largest omelette" recordAmount="2.95 metric tonnes" />
<mx:Object recordName="Largest tiramisu" recordAmount="216 kg" />
</mx:Array>
</mx:dataProvider>
<mx:columns>
<mx:DataGridColumn dataField="recordName" headerText="The Name of the World Record" headerWordWrap="true" />
<mx:DataGridColumn dataField="recordAmount" headerText="The Amount of the Metric Being Measured" headerWordWrap="true" />
</mx:columns>
</mx:DataGrid>
<mx:DataGrid id="dg_mxml_config5_scrolldown" height="{dg_mxml_config1_mouseover.height}" width="{dg_mxml_config1_mouseover.width}" lockedRowCount="3"
x="{dg_mxml_config1_mouseover.width + 10}"
y="0" >
<mx:dataProvider>
<mx:Array>
<mx:Object recordName="Tennis balls held in mouth by a dog" recordAmount="5" />
<mx:Object recordName="Loudest burp" recordAmount="104.9 decibels" />
<mx:Object recordName="Longest ear hair" recordAmount="13.2 cm" />
<mx:Object recordName="Longest tongue" recordAmount="9.5 cm" />
<mx:Object recordName="Furthest eyeball popper" recordAmount="11 mm" />
<mx:Object recordName="Longest lawn mower ride" recordAmount="23,487.5 km" />
<mx:Object recordName="Largest carved sapphire" recordAmount="80,500 carats" />
<mx:Object recordName="Largest cut diamond" recordAmount="555.55 carats" />
<mx:Object recordName="Longest golf cart" recordAmount="5.81 m" />
<mx:Object recordName="Soccer ball heading" recordAmount="8 hr 32 min 3 sec" />
<mx:Object recordName="Most touches in one minute with head" recordAmount="319" />
<mx:Object recordName="Largest millipede" recordAmount="38.7 cm" />
<mx:Object recordName="Fastest eater" recordAmount="Star-nosed mole (120 ms)" />
<mx:Object recordName="Highest jump by a pig" recordAmount="70 cm" />
<mx:Object recordName="Longest goldfish" recordAmount="47.4 cm" />
<mx:Object recordName="Largest omelette" recordAmount="2.95 metric tonnes" />
<mx:Object recordName="Largest tiramisu" recordAmount="216 kg" />
</mx:Array>
</mx:dataProvider>
<mx:columns>
<mx:DataGridColumn dataField="recordName" headerText="The Name of the World Record" headerWordWrap="true" />
<mx:DataGridColumn dataField="recordAmount" headerText="The Amount of the Metric Being Measured" headerWordWrap="true" />
</mx:columns>
</mx:DataGrid>
<mx:DataGrid id="dg_mxml_config5_scrollup" height="{dg_mxml_config1_mouseover.height}" width="{dg_mxml_config1_mouseover.width}" lockedRowCount="3"
x="{dg_mxml_config1_mouseover.width * 2 + 20}"
y="0" >
<mx:dataProvider>
<mx:Array>
<mx:Object recordName="Tennis balls held in mouth by a dog" recordAmount="5" />
<mx:Object recordName="Loudest burp" recordAmount="104.9 decibels" />
<mx:Object recordName="Longest ear hair" recordAmount="13.2 cm" />
<mx:Object recordName="Longest tongue" recordAmount="9.5 cm" />
<mx:Object recordName="Furthest eyeball popper" recordAmount="11 mm" />
<mx:Object recordName="Longest lawn mower ride" recordAmount="23,487.5 km" />
<mx:Object recordName="Largest carved sapphire" recordAmount="80,500 carats" />
<mx:Object recordName="Largest cut diamond" recordAmount="555.55 carats" />
<mx:Object recordName="Longest golf cart" recordAmount="5.81 m" />
<mx:Object recordName="Soccer ball heading" recordAmount="8 hr 32 min 3 sec" />
<mx:Object recordName="Most touches in one minute with head" recordAmount="319" />
<mx:Object recordName="Largest millipede" recordAmount="38.7 cm" />
<mx:Object recordName="Fastest eater" recordAmount="Star-nosed mole (120 ms)" />
<mx:Object recordName="Highest jump by a pig" recordAmount="70 cm" />
<mx:Object recordName="Longest goldfish" recordAmount="47.4 cm" />
<mx:Object recordName="Largest omelette" recordAmount="2.95 metric tonnes" />
<mx:Object recordName="Largest tiramisu" recordAmount="216 kg" />
</mx:Array>
</mx:dataProvider>
<mx:columns>
<mx:DataGridColumn dataField="recordName" headerText="The Name of the World Record" headerWordWrap="true" />
<mx:DataGridColumn dataField="recordAmount" headerText="The Amount of the Metric Being Measured" headerWordWrap="true" />
</mx:columns>
</mx:DataGrid>
<mx:DataGrid id="dg_mxml_config5_sortleft" height="{dg_mxml_config1_mouseover.height}" width="{dg_mxml_config1_mouseover.width}" lockedRowCount="3"
x="0"
y="{dg_mxml_config1_mouseover.height + 10}" >
<mx:dataProvider>
<mx:Array>
<mx:Object recordName="Tennis balls held in mouth by a dog" recordAmount="5" />
<mx:Object recordName="Loudest burp" recordAmount="104.9 decibels" />
<mx:Object recordName="Longest ear hair" recordAmount="13.2 cm" />
<mx:Object recordName="Longest tongue" recordAmount="9.5 cm" />
<mx:Object recordName="Furthest eyeball popper" recordAmount="11 mm" />
<mx:Object recordName="Longest lawn mower ride" recordAmount="23,487.5 km" />
<mx:Object recordName="Largest carved sapphire" recordAmount="80,500 carats" />
<mx:Object recordName="Largest cut diamond" recordAmount="555.55 carats" />
<mx:Object recordName="Longest golf cart" recordAmount="5.81 m" />
<mx:Object recordName="Soccer ball heading" recordAmount="8 hr 32 min 3 sec" />
<mx:Object recordName="Most touches in one minute with head" recordAmount="319" />
<mx:Object recordName="Largest millipede" recordAmount="38.7 cm" />
<mx:Object recordName="Fastest eater" recordAmount="Star-nosed mole (120 ms)" />
<mx:Object recordName="Highest jump by a pig" recordAmount="70 cm" />
<mx:Object recordName="Longest goldfish" recordAmount="47.4 cm" />
<mx:Object recordName="Largest omelette" recordAmount="2.95 metric tonnes" />
<mx:Object recordName="Largest tiramisu" recordAmount="216 kg" />
</mx:Array>
</mx:dataProvider>
<mx:columns>
<mx:DataGridColumn dataField="recordName" headerText="The Name of the World Record" headerWordWrap="true" />
<mx:DataGridColumn dataField="recordAmount" headerText="The Amount of the Metric Being Measured" headerWordWrap="true" />
</mx:columns>
</mx:DataGrid>
<mx:DataGrid id="dg_mxml_config5_sortright" height="{dg_mxml_config1_mouseover.height}" width="{dg_mxml_config1_mouseover.width}" lockedRowCount="3"
x="{dg_mxml_config1_mouseover.width + 10}"
y="{dg_mxml_config1_mouseover.height + 10}" >
<mx:dataProvider>
<mx:Array>
<mx:Object recordName="Tennis balls held in mouth by a dog" recordAmount="5" />
<mx:Object recordName="Loudest burp" recordAmount="104.9 decibels" />
<mx:Object recordName="Longest ear hair" recordAmount="13.2 cm" />
<mx:Object recordName="Longest tongue" recordAmount="9.5 cm" />
<mx:Object recordName="Furthest eyeball popper" recordAmount="11 mm" />
<mx:Object recordName="Longest lawn mower ride" recordAmount="23,487.5 km" />
<mx:Object recordName="Largest carved sapphire" recordAmount="80,500 carats" />
<mx:Object recordName="Largest cut diamond" recordAmount="555.55 carats" />
<mx:Object recordName="Longest golf cart" recordAmount="5.81 m" />
<mx:Object recordName="Soccer ball heading" recordAmount="8 hr 32 min 3 sec" />
<mx:Object recordName="Most touches in one minute with head" recordAmount="319" />
<mx:Object recordName="Largest millipede" recordAmount="38.7 cm" />
<mx:Object recordName="Fastest eater" recordAmount="Star-nosed mole (120 ms)" />
<mx:Object recordName="Highest jump by a pig" recordAmount="70 cm" />
<mx:Object recordName="Longest goldfish" recordAmount="47.4 cm" />
<mx:Object recordName="Largest omelette" recordAmount="2.95 metric tonnes" />
<mx:Object recordName="Largest tiramisu" recordAmount="216 kg" />
</mx:Array>
</mx:dataProvider>
<mx:columns>
<mx:DataGridColumn dataField="recordName" headerText="The Name of the World Record" headerWordWrap="true" />
<mx:DataGridColumn dataField="recordAmount" headerText="The Amount of the Metric Being Measured" headerWordWrap="true" />
</mx:columns>
</mx:DataGrid>
</mx:Canvas>
<!--=========================================================
Combine lockedRowCount and variableRowHeight, lockedRowCount=1
===========================================================-->
<mx:Canvas>
<mx:DataGrid id="dg_mxml_config6_mouseover" height="{dg_mxml_config1_mouseover.height}" width="{dg_mxml_config1_mouseover.width}"
lockedRowCount="1" variableRowHeight="true" wordWrap="true" x="0" y="0" >
<mx:dataProvider>
<mx:Array>
<mx:Object recordName="Tennis balls held in mouth by a dog" recordAmount="5" />
<mx:Object recordName="Loudest burp" recordAmount="104.9 decibels" />
<mx:Object recordName="Longest ear hair" recordAmount="13.2 cm" />
<mx:Object recordName="Longest tongue" recordAmount="9.5 cm" />
<mx:Object recordName="Furthest eyeball popper" recordAmount="11 mm" />
<mx:Object recordName="Longest lawn mower ride" recordAmount="23,487.5 km" />
<mx:Object recordName="Largest carved sapphire" recordAmount="80,500 carats" />
<mx:Object recordName="Largest cut diamond" recordAmount="555.55 carats" />
<mx:Object recordName="Longest golf cart" recordAmount="5.81 m" />
<mx:Object recordName="Soccer ball heading" recordAmount="8 hr 32 min 3 sec" />
<mx:Object recordName="Most touches in one minute with head" recordAmount="319" />
<mx:Object recordName="Largest millipede" recordAmount="38.7 cm" />
<mx:Object recordName="Fastest eater" recordAmount="Star-nosed mole (120 ms)" />
<mx:Object recordName="Highest jump by a pig" recordAmount="70 cm" />
<mx:Object recordName="Longest goldfish" recordAmount="47.4 cm" />
<mx:Object recordName="Largest omelette" recordAmount="2.95 metric tonnes" />
<mx:Object recordName="Largest tiramisu" recordAmount="216 kg" />
</mx:Array>
</mx:dataProvider>
<mx:columns>
<mx:DataGridColumn dataField="recordName" headerText="Record" />
<mx:DataGridColumn dataField="recordAmount" headerText="Amount" />
</mx:columns>
</mx:DataGrid>
<mx:DataGrid id="dg_mxml_config6_scrolldown" height="{dg_mxml_config1_mouseover.height}" width="{dg_mxml_config1_mouseover.width}"
lockedRowCount="1" variableRowHeight="true" wordWrap="true"
x="{dg_mxml_config1_mouseover.width + 10}"
y="0" >
<mx:dataProvider>
<mx:Array>
<mx:Object recordName="Tennis balls held in mouth by a dog" recordAmount="5" />
<mx:Object recordName="Loudest burp" recordAmount="104.9 decibels" />
<mx:Object recordName="Longest ear hair" recordAmount="13.2 cm" />
<mx:Object recordName="Longest tongue" recordAmount="9.5 cm" />
<mx:Object recordName="Furthest eyeball popper" recordAmount="11 mm" />
<mx:Object recordName="Longest lawn mower ride" recordAmount="23,487.5 km" />
<mx:Object recordName="Largest carved sapphire" recordAmount="80,500 carats" />
<mx:Object recordName="Largest cut diamond" recordAmount="555.55 carats" />
<mx:Object recordName="Longest golf cart" recordAmount="5.81 m" />
<mx:Object recordName="Soccer ball heading" recordAmount="8 hr 32 min 3 sec" />
<mx:Object recordName="Most touches in one minute with head" recordAmount="319" />
<mx:Object recordName="Largest millipede" recordAmount="38.7 cm" />
<mx:Object recordName="Fastest eater" recordAmount="Star-nosed mole (120 ms)" />
<mx:Object recordName="Highest jump by a pig" recordAmount="70 cm" />
<mx:Object recordName="Longest goldfish" recordAmount="47.4 cm" />
<mx:Object recordName="Largest omelette" recordAmount="2.95 metric tonnes" />
<mx:Object recordName="Largest tiramisu" recordAmount="216 kg" />
</mx:Array>
</mx:dataProvider>
<mx:columns>
<mx:DataGridColumn dataField="recordName" headerText="Record" />
<mx:DataGridColumn dataField="recordAmount" headerText="Amount" />
</mx:columns>
</mx:DataGrid>
<mx:DataGrid id="dg_mxml_config6_scrollup" height="{dg_mxml_config1_mouseover.height}" width="{dg_mxml_config1_mouseover.width}"
lockedRowCount="1" variableRowHeight="true" wordWrap="true"
x="{dg_mxml_config1_mouseover.width * 2 + 20}"
y="0" >
<mx:dataProvider>
<mx:Array>
<mx:Object recordName="Tennis balls held in mouth by a dog" recordAmount="5" />
<mx:Object recordName="Loudest burp" recordAmount="104.9 decibels" />
<mx:Object recordName="Longest ear hair" recordAmount="13.2 cm" />
<mx:Object recordName="Longest tongue" recordAmount="9.5 cm" />
<mx:Object recordName="Furthest eyeball popper" recordAmount="11 mm" />
<mx:Object recordName="Longest lawn mower ride" recordAmount="23,487.5 km" />
<mx:Object recordName="Largest carved sapphire" recordAmount="80,500 carats" />
<mx:Object recordName="Largest cut diamond" recordAmount="555.55 carats" />
<mx:Object recordName="Longest golf cart" recordAmount="5.81 m" />
<mx:Object recordName="Soccer ball heading" recordAmount="8 hr 32 min 3 sec" />
<mx:Object recordName="Most touches in one minute with head" recordAmount="319" />
<mx:Object recordName="Largest millipede" recordAmount="38.7 cm" />
<mx:Object recordName="Fastest eater" recordAmount="Star-nosed mole (120 ms)" />
<mx:Object recordName="Highest jump by a pig" recordAmount="70 cm" />
<mx:Object recordName="Longest goldfish" recordAmount="47.4 cm" />
<mx:Object recordName="Largest omelette" recordAmount="2.95 metric tonnes" />
<mx:Object recordName="Largest tiramisu" recordAmount="216 kg" />
</mx:Array>
</mx:dataProvider>
<mx:columns>
<mx:DataGridColumn dataField="recordName" headerText="Record" />
<mx:DataGridColumn dataField="recordAmount" headerText="Amount" />
</mx:columns>
</mx:DataGrid>
<mx:DataGrid id="dg_mxml_config6_sortleft" height="{dg_mxml_config1_mouseover.height}" width="{dg_mxml_config1_mouseover.width}"
lockedRowCount="1" variableRowHeight="true" wordWrap="true"
x="0"
y="{dg_mxml_config1_mouseover.height + 10}" >
<mx:dataProvider>
<mx:Array>
<mx:Object recordName="Tennis balls held in mouth by a dog" recordAmount="5" />
<mx:Object recordName="Loudest burp" recordAmount="104.9 decibels" />
<mx:Object recordName="Longest ear hair" recordAmount="13.2 cm" />
<mx:Object recordName="Longest tongue" recordAmount="9.5 cm" />
<mx:Object recordName="Furthest eyeball popper" recordAmount="11 mm" />
<mx:Object recordName="Longest lawn mower ride" recordAmount="23,487.5 km" />
<mx:Object recordName="Largest carved sapphire" recordAmount="80,500 carats" />
<mx:Object recordName="Largest cut diamond" recordAmount="555.55 carats" />
<mx:Object recordName="Longest golf cart" recordAmount="5.81 m" />
<mx:Object recordName="Soccer ball heading" recordAmount="8 hr 32 min 3 sec" />
<mx:Object recordName="Most touches in one minute with head" recordAmount="319" />
<mx:Object recordName="Largest millipede" recordAmount="38.7 cm" />
<mx:Object recordName="Fastest eater" recordAmount="Star-nosed mole (120 ms)" />
<mx:Object recordName="Highest jump by a pig" recordAmount="70 cm" />
<mx:Object recordName="Longest goldfish" recordAmount="47.4 cm" />
<mx:Object recordName="Largest omelette" recordAmount="2.95 metric tonnes" />
<mx:Object recordName="Largest tiramisu" recordAmount="216 kg" />
</mx:Array>
</mx:dataProvider>
<mx:columns>
<mx:DataGridColumn dataField="recordName" headerText="Record" />
<mx:DataGridColumn dataField="recordAmount" headerText="Amount" />
</mx:columns>
</mx:DataGrid>
<mx:DataGrid id="dg_mxml_config6_sortright" height="{dg_mxml_config1_mouseover.height}" width="{dg_mxml_config1_mouseover.width}"
lockedRowCount="1" variableRowHeight="true" wordWrap="true"
x="{dg_mxml_config1_mouseover.width + 10}"
y="{dg_mxml_config1_mouseover.height + 10}" >
<mx:dataProvider>
<mx:Array>
<mx:Object recordName="Tennis balls held in mouth by a dog" recordAmount="5" />
<mx:Object recordName="Loudest burp" recordAmount="104.9 decibels" />
<mx:Object recordName="Longest ear hair" recordAmount="13.2 cm" />
<mx:Object recordName="Longest tongue" recordAmount="9.5 cm" />
<mx:Object recordName="Furthest eyeball popper" recordAmount="11 mm" />
<mx:Object recordName="Longest lawn mower ride" recordAmount="23,487.5 km" />
<mx:Object recordName="Largest carved sapphire" recordAmount="80,500 carats" />
<mx:Object recordName="Largest cut diamond" recordAmount="555.55 carats" />
<mx:Object recordName="Longest golf cart" recordAmount="5.81 m" />
<mx:Object recordName="Soccer ball heading" recordAmount="8 hr 32 min 3 sec" />
<mx:Object recordName="Most touches in one minute with head" recordAmount="319" />
<mx:Object recordName="Largest millipede" recordAmount="38.7 cm" />
<mx:Object recordName="Fastest eater" recordAmount="Star-nosed mole (120 ms)" />
<mx:Object recordName="Highest jump by a pig" recordAmount="70 cm" />
<mx:Object recordName="Longest goldfish" recordAmount="47.4 cm" />
<mx:Object recordName="Largest omelette" recordAmount="2.95 metric tonnes" />
<mx:Object recordName="Largest tiramisu" recordAmount="216 kg" />
</mx:Array>
</mx:dataProvider>
<mx:columns>
<mx:DataGridColumn dataField="recordName" headerText="Record" />
<mx:DataGridColumn dataField="recordAmount" headerText="Amount" />
</mx:columns>
</mx:DataGrid>
</mx:Canvas>
<!--=========================================================
Combine lockedRowCount and variableRowHeight, lockedRowCount=3
===========================================================-->
<mx:Canvas>
<mx:DataGrid id="dg_mxml_config7_mouseover" height="{dg_mxml_config1_mouseover.height}" width="{dg_mxml_config1_mouseover.width}"
lockedRowCount="3" variableRowHeight="true" wordWrap="true" x="0" y="0" >
<mx:dataProvider>
<mx:Array>
<mx:Object recordName="Tennis balls held in mouth by a dog" recordAmount="5" />
<mx:Object recordName="Loudest burp" recordAmount="104.9 decibels" />
<mx:Object recordName="Longest ear hair" recordAmount="13.2 cm" />
<mx:Object recordName="Longest tongue" recordAmount="9.5 cm" />
<mx:Object recordName="Furthest eyeball popper" recordAmount="11 mm" />
<mx:Object recordName="Longest lawn mower ride" recordAmount="23,487.5 km" />
<mx:Object recordName="Largest carved sapphire" recordAmount="80,500 carats" />
<mx:Object recordName="Largest cut diamond" recordAmount="555.55 carats" />
<mx:Object recordName="Longest golf cart" recordAmount="5.81 m" />
<mx:Object recordName="Soccer ball heading" recordAmount="8 hr 32 min 3 sec" />
<mx:Object recordName="Most touches in one minute with head" recordAmount="319" />
<mx:Object recordName="Largest millipede" recordAmount="38.7 cm" />
<mx:Object recordName="Fastest eater" recordAmount="Star-nosed mole (120 ms)" />
<mx:Object recordName="Highest jump by a pig" recordAmount="70 cm" />
<mx:Object recordName="Longest goldfish" recordAmount="47.4 cm" />
<mx:Object recordName="Largest omelette" recordAmount="2.95 metric tonnes" />
<mx:Object recordName="Largest tiramisu" recordAmount="216 kg" />
</mx:Array>
</mx:dataProvider>
<mx:columns>
<mx:DataGridColumn dataField="recordName" headerText="Record" />
<mx:DataGridColumn dataField="recordAmount" headerText="Amount" />
</mx:columns>
</mx:DataGrid>
<mx:DataGrid id="dg_mxml_config7_scrolldown" height="{dg_mxml_config1_mouseover.height}" width="{dg_mxml_config1_mouseover.width}"
lockedRowCount="3" variableRowHeight="true" wordWrap="true"
x="{dg_mxml_config1_mouseover.width + 10}"
y="0" >
<mx:dataProvider>
<mx:Array>
<mx:Object recordName="Tennis balls held in mouth by a dog" recordAmount="5" />
<mx:Object recordName="Loudest burp" recordAmount="104.9 decibels" />
<mx:Object recordName="Longest ear hair" recordAmount="13.2 cm" />
<mx:Object recordName="Longest tongue" recordAmount="9.5 cm" />
<mx:Object recordName="Furthest eyeball popper" recordAmount="11 mm" />
<mx:Object recordName="Longest lawn mower ride" recordAmount="23,487.5 km" />
<mx:Object recordName="Largest carved sapphire" recordAmount="80,500 carats" />
<mx:Object recordName="Largest cut diamond" recordAmount="555.55 carats" />
<mx:Object recordName="Longest golf cart" recordAmount="5.81 m" />
<mx:Object recordName="Soccer ball heading" recordAmount="8 hr 32 min 3 sec" />
<mx:Object recordName="Most touches in one minute with head" recordAmount="319" />
<mx:Object recordName="Largest millipede" recordAmount="38.7 cm" />
<mx:Object recordName="Fastest eater" recordAmount="Star-nosed mole (120 ms)" />
<mx:Object recordName="Highest jump by a pig" recordAmount="70 cm" />
<mx:Object recordName="Longest goldfish" recordAmount="47.4 cm" />
<mx:Object recordName="Largest omelette" recordAmount="2.95 metric tonnes" />
<mx:Object recordName="Largest tiramisu" recordAmount="216 kg" />
</mx:Array>
</mx:dataProvider>
<mx:columns>
<mx:DataGridColumn dataField="recordName" headerText="Record" />
<mx:DataGridColumn dataField="recordAmount" headerText="Amount" />
</mx:columns>
</mx:DataGrid>
<mx:DataGrid id="dg_mxml_config7_scrollup" height="{dg_mxml_config1_mouseover.height}" width="{dg_mxml_config1_mouseover.width}"
lockedRowCount="3" variableRowHeight="true" wordWrap="true"
x="{dg_mxml_config1_mouseover.width * 2 + 20}"
y="0" >
<mx:dataProvider>
<mx:Array>
<mx:Object recordName="Tennis balls held in mouth by a dog" recordAmount="5" />
<mx:Object recordName="Loudest burp" recordAmount="104.9 decibels" />
<mx:Object recordName="Longest ear hair" recordAmount="13.2 cm" />
<mx:Object recordName="Longest tongue" recordAmount="9.5 cm" />
<mx:Object recordName="Furthest eyeball popper" recordAmount="11 mm" />
<mx:Object recordName="Longest lawn mower ride" recordAmount="23,487.5 km" />
<mx:Object recordName="Largest carved sapphire" recordAmount="80,500 carats" />
<mx:Object recordName="Largest cut diamond" recordAmount="555.55 carats" />
<mx:Object recordName="Longest golf cart" recordAmount="5.81 m" />
<mx:Object recordName="Soccer ball heading" recordAmount="8 hr 32 min 3 sec" />
<mx:Object recordName="Most touches in one minute with head" recordAmount="319" />
<mx:Object recordName="Largest millipede" recordAmount="38.7 cm" />
<mx:Object recordName="Fastest eater" recordAmount="Star-nosed mole (120 ms)" />
<mx:Object recordName="Highest jump by a pig" recordAmount="70 cm" />
<mx:Object recordName="Longest goldfish" recordAmount="47.4 cm" />
<mx:Object recordName="Largest omelette" recordAmount="2.95 metric tonnes" />
<mx:Object recordName="Largest tiramisu" recordAmount="216 kg" />
</mx:Array>
</mx:dataProvider>
<mx:columns>
<mx:DataGridColumn dataField="recordName" headerText="Record" />
<mx:DataGridColumn dataField="recordAmount" headerText="Amount" />
</mx:columns>
</mx:DataGrid>
<mx:DataGrid id="dg_mxml_config7_sortleft" height="{dg_mxml_config1_mouseover.height}" width="{dg_mxml_config1_mouseover.width}"
lockedRowCount="3" variableRowHeight="true" wordWrap="true"
x="0"
y="{dg_mxml_config1_mouseover.height + 10}" >
<mx:dataProvider>
<mx:Array>
<mx:Object recordName="Tennis balls held in mouth by a dog" recordAmount="5" />
<mx:Object recordName="Loudest burp" recordAmount="104.9 decibels" />
<mx:Object recordName="Longest ear hair" recordAmount="13.2 cm" />
<mx:Object recordName="Longest tongue" recordAmount="9.5 cm" />
<mx:Object recordName="Furthest eyeball popper" recordAmount="11 mm" />
<mx:Object recordName="Longest lawn mower ride" recordAmount="23,487.5 km" />
<mx:Object recordName="Largest carved sapphire" recordAmount="80,500 carats" />
<mx:Object recordName="Largest cut diamond" recordAmount="555.55 carats" />
<mx:Object recordName="Longest golf cart" recordAmount="5.81 m" />
<mx:Object recordName="Soccer ball heading" recordAmount="8 hr 32 min 3 sec" />
<mx:Object recordName="Most touches in one minute with head" recordAmount="319" />
<mx:Object recordName="Largest millipede" recordAmount="38.7 cm" />
<mx:Object recordName="Fastest eater" recordAmount="Star-nosed mole (120 ms)" />
<mx:Object recordName="Highest jump by a pig" recordAmount="70 cm" />
<mx:Object recordName="Longest goldfish" recordAmount="47.4 cm" />
<mx:Object recordName="Largest omelette" recordAmount="2.95 metric tonnes" />
<mx:Object recordName="Largest tiramisu" recordAmount="216 kg" />
</mx:Array>
</mx:dataProvider>
<mx:columns>
<mx:DataGridColumn dataField="recordName" headerText="Record" />
<mx:DataGridColumn dataField="recordAmount" headerText="Amount" />
</mx:columns>
</mx:DataGrid>
<mx:DataGrid id="dg_mxml_config7_sortright" height="{dg_mxml_config1_mouseover.height}" width="{dg_mxml_config1_mouseover.width}"
lockedRowCount="3" variableRowHeight="true" wordWrap="true"
x="{dg_mxml_config1_mouseover.width + 10}"
y="{dg_mxml_config1_mouseover.height + 10}" >
<mx:dataProvider>
<mx:Array>
<mx:Object recordName="Tennis balls held in mouth by a dog" recordAmount="5" />
<mx:Object recordName="Loudest burp" recordAmount="104.9 decibels" />
<mx:Object recordName="Longest ear hair" recordAmount="13.2 cm" />
<mx:Object recordName="Longest tongue" recordAmount="9.5 cm" />
<mx:Object recordName="Furthest eyeball popper" recordAmount="11 mm" />
<mx:Object recordName="Longest lawn mower ride" recordAmount="23,487.5 km" />
<mx:Object recordName="Largest carved sapphire" recordAmount="80,500 carats" />
<mx:Object recordName="Largest cut diamond" recordAmount="555.55 carats" />
<mx:Object recordName="Longest golf cart" recordAmount="5.81 m" />
<mx:Object recordName="Soccer ball heading" recordAmount="8 hr 32 min 3 sec" />
<mx:Object recordName="Most touches in one minute with head" recordAmount="319" />
<mx:Object recordName="Largest millipede" recordAmount="38.7 cm" />
<mx:Object recordName="Fastest eater" recordAmount="Star-nosed mole (120 ms)" />
<mx:Object recordName="Highest jump by a pig" recordAmount="70 cm" />
<mx:Object recordName="Longest goldfish" recordAmount="47.4 cm" />
<mx:Object recordName="Largest omelette" recordAmount="2.95 metric tonnes" />
<mx:Object recordName="Largest tiramisu" recordAmount="216 kg" />
</mx:Array>
</mx:dataProvider>
<mx:columns>
<mx:DataGridColumn dataField="recordName" headerText="Record" />
<mx:DataGridColumn dataField="recordAmount" headerText="Amount" />
</mx:columns>
</mx:DataGrid>
</mx:Canvas>
<!--=========================================================
Combine lockedRowCount, variableRowHeight, wordWrap,
and headerWordWrap.
lockedRowCount: 1
variableRowHeight & wordWrap: true
headerWordWrap: true, true
=========================================================-->
<mx:Canvas>
<mx:DataGrid id="dg_mxml_config8_mouseover" height="{dg_mxml_config1_mouseover.height}" width="{dg_mxml_config1_mouseover.width}"
lockedRowCount="1" wordWrap="true" variableRowHeight="true" x="0" y="0" >
<mx:dataProvider>
<mx:Array>
<mx:Object recordName="Tennis balls held in mouth by a dog" recordAmount="5" />
<mx:Object recordName="Loudest burp" recordAmount="104.9 decibels" />
<mx:Object recordName="Longest ear hair" recordAmount="13.2 cm" />
<mx:Object recordName="Longest tongue" recordAmount="9.5 cm" />
<mx:Object recordName="Furthest eyeball popper" recordAmount="11 mm" />
<mx:Object recordName="Longest lawn mower ride" recordAmount="23,487.5 km" />
<mx:Object recordName="Largest carved sapphire" recordAmount="80,500 carats" />
<mx:Object recordName="Largest cut diamond" recordAmount="555.55 carats" />
<mx:Object recordName="Longest golf cart" recordAmount="5.81 m" />
<mx:Object recordName="Soccer ball heading" recordAmount="8 hr 32 min 3 sec" />
<mx:Object recordName="Most touches in one minute with head" recordAmount="319" />
<mx:Object recordName="Largest millipede" recordAmount="38.7 cm" />
<mx:Object recordName="Fastest eater" recordAmount="Star-nosed mole (120 ms)" />
<mx:Object recordName="Highest jump by a pig" recordAmount="70 cm" />
<mx:Object recordName="Longest goldfish" recordAmount="47.4 cm" />
<mx:Object recordName="Largest omelette" recordAmount="2.95 metric tonnes" />
<mx:Object recordName="Largest tiramisu" recordAmount="216 kg" />
</mx:Array>
</mx:dataProvider>
<mx:columns>
<mx:DataGridColumn dataField="recordName" headerText="The Name of the World Record" headerWordWrap="true" />
<mx:DataGridColumn dataField="recordAmount" headerText="The Amount of the Metric Being Measured" headerWordWrap="true" />
</mx:columns>
</mx:DataGrid>
<mx:DataGrid id="dg_mxml_config8_scrolldown" height="{dg_mxml_config1_mouseover.height}" width="{dg_mxml_config1_mouseover.width}"
lockedRowCount="1" wordWrap="true" variableRowHeight="true"
x="{dg_mxml_config1_mouseover.width + 10}"
y="0" >
<mx:dataProvider>
<mx:Array>
<mx:Object recordName="Tennis balls held in mouth by a dog" recordAmount="5" />
<mx:Object recordName="Loudest burp" recordAmount="104.9 decibels" />
<mx:Object recordName="Longest ear hair" recordAmount="13.2 cm" />
<mx:Object recordName="Longest tongue" recordAmount="9.5 cm" />
<mx:Object recordName="Furthest eyeball popper" recordAmount="11 mm" />
<mx:Object recordName="Longest lawn mower ride" recordAmount="23,487.5 km" />
<mx:Object recordName="Largest carved sapphire" recordAmount="80,500 carats" />
<mx:Object recordName="Largest cut diamond" recordAmount="555.55 carats" />
<mx:Object recordName="Longest golf cart" recordAmount="5.81 m" />
<mx:Object recordName="Soccer ball heading" recordAmount="8 hr 32 min 3 sec" />
<mx:Object recordName="Most touches in one minute with head" recordAmount="319" />
<mx:Object recordName="Largest millipede" recordAmount="38.7 cm" />
<mx:Object recordName="Fastest eater" recordAmount="Star-nosed mole (120 ms)" />
<mx:Object recordName="Highest jump by a pig" recordAmount="70 cm" />
<mx:Object recordName="Longest goldfish" recordAmount="47.4 cm" />
<mx:Object recordName="Largest omelette" recordAmount="2.95 metric tonnes" />
<mx:Object recordName="Largest tiramisu" recordAmount="216 kg" />
</mx:Array>
</mx:dataProvider>
<mx:columns>
<mx:DataGridColumn dataField="recordName" headerText="The Name of the World Record" headerWordWrap="true" />
<mx:DataGridColumn dataField="recordAmount" headerText="The Amount of the Metric Being Measured" headerWordWrap="true" />
</mx:columns>
</mx:DataGrid>
<mx:DataGrid id="dg_mxml_config8_scrollup" height="{dg_mxml_config1_mouseover.height}" width="{dg_mxml_config1_mouseover.width}"
lockedRowCount="1" wordWrap="true" variableRowHeight="true"
x="{dg_mxml_config1_mouseover.width * 2 + 20}"
y="0" >
<mx:dataProvider>
<mx:Array>
<mx:Object recordName="Tennis balls held in mouth by a dog" recordAmount="5" />
<mx:Object recordName="Loudest burp" recordAmount="104.9 decibels" />
<mx:Object recordName="Longest ear hair" recordAmount="13.2 cm" />
<mx:Object recordName="Longest tongue" recordAmount="9.5 cm" />
<mx:Object recordName="Furthest eyeball popper" recordAmount="11 mm" />
<mx:Object recordName="Longest lawn mower ride" recordAmount="23,487.5 km" />
<mx:Object recordName="Largest carved sapphire" recordAmount="80,500 carats" />
<mx:Object recordName="Largest cut diamond" recordAmount="555.55 carats" />
<mx:Object recordName="Longest golf cart" recordAmount="5.81 m" />
<mx:Object recordName="Soccer ball heading" recordAmount="8 hr 32 min 3 sec" />
<mx:Object recordName="Most touches in one minute with head" recordAmount="319" />
<mx:Object recordName="Largest millipede" recordAmount="38.7 cm" />
<mx:Object recordName="Fastest eater" recordAmount="Star-nosed mole (120 ms)" />
<mx:Object recordName="Highest jump by a pig" recordAmount="70 cm" />
<mx:Object recordName="Longest goldfish" recordAmount="47.4 cm" />
<mx:Object recordName="Largest omelette" recordAmount="2.95 metric tonnes" />
<mx:Object recordName="Largest tiramisu" recordAmount="216 kg" />
</mx:Array>
</mx:dataProvider>
<mx:columns>
<mx:DataGridColumn dataField="recordName" headerText="The Name of the World Record" headerWordWrap="true" />
<mx:DataGridColumn dataField="recordAmount" headerText="The Amount of the Metric Being Measured" headerWordWrap="true" />
</mx:columns>
</mx:DataGrid>
<mx:DataGrid id="dg_mxml_config8_sortleft" height="{dg_mxml_config1_mouseover.height}" width="{dg_mxml_config1_mouseover.width}"
lockedRowCount="1" wordWrap="true" variableRowHeight="true"
x="0"
y="{dg_mxml_config1_mouseover.height + 10}" >
<mx:dataProvider>
<mx:Array>
<mx:Object recordName="Tennis balls held in mouth by a dog" recordAmount="5" />
<mx:Object recordName="Loudest burp" recordAmount="104.9 decibels" />
<mx:Object recordName="Longest ear hair" recordAmount="13.2 cm" />
<mx:Object recordName="Longest tongue" recordAmount="9.5 cm" />
<mx:Object recordName="Furthest eyeball popper" recordAmount="11 mm" />
<mx:Object recordName="Longest lawn mower ride" recordAmount="23,487.5 km" />
<mx:Object recordName="Largest carved sapphire" recordAmount="80,500 carats" />
<mx:Object recordName="Largest cut diamond" recordAmount="555.55 carats" />
<mx:Object recordName="Longest golf cart" recordAmount="5.81 m" />
<mx:Object recordName="Soccer ball heading" recordAmount="8 hr 32 min 3 sec" />
<mx:Object recordName="Most touches in one minute with head" recordAmount="319" />
<mx:Object recordName="Largest millipede" recordAmount="38.7 cm" />
<mx:Object recordName="Fastest eater" recordAmount="Star-nosed mole (120 ms)" />
<mx:Object recordName="Highest jump by a pig" recordAmount="70 cm" />
<mx:Object recordName="Longest goldfish" recordAmount="47.4 cm" />
<mx:Object recordName="Largest omelette" recordAmount="2.95 metric tonnes" />
<mx:Object recordName="Largest tiramisu" recordAmount="216 kg" />
</mx:Array>
</mx:dataProvider>
<mx:columns>
<mx:DataGridColumn dataField="recordName" headerText="The Name of the World Record" headerWordWrap="true" />
<mx:DataGridColumn dataField="recordAmount" headerText="The Amount of the Metric Being Measured" headerWordWrap="true" />
</mx:columns>
</mx:DataGrid>
<mx:DataGrid id="dg_mxml_config8_sortright" height="{dg_mxml_config1_mouseover.height}" width="{dg_mxml_config1_mouseover.width}"
lockedRowCount="1" wordWrap="true" variableRowHeight="true"
x="{dg_mxml_config1_mouseover.width + 10}"
y="{dg_mxml_config1_mouseover.height + 10}" >
<mx:dataProvider>
<mx:Array>
<mx:Object recordName="Tennis balls held in mouth by a dog" recordAmount="5" />
<mx:Object recordName="Loudest burp" recordAmount="104.9 decibels" />
<mx:Object recordName="Longest ear hair" recordAmount="13.2 cm" />
<mx:Object recordName="Longest tongue" recordAmount="9.5 cm" />
<mx:Object recordName="Furthest eyeball popper" recordAmount="11 mm" />
<mx:Object recordName="Longest lawn mower ride" recordAmount="23,487.5 km" />
<mx:Object recordName="Largest carved sapphire" recordAmount="80,500 carats" />
<mx:Object recordName="Largest cut diamond" recordAmount="555.55 carats" />
<mx:Object recordName="Longest golf cart" recordAmount="5.81 m" />
<mx:Object recordName="Soccer ball heading" recordAmount="8 hr 32 min 3 sec" />
<mx:Object recordName="Most touches in one minute with head" recordAmount="319" />
<mx:Object recordName="Largest millipede" recordAmount="38.7 cm" />
<mx:Object recordName="Fastest eater" recordAmount="Star-nosed mole (120 ms)" />
<mx:Object recordName="Highest jump by a pig" recordAmount="70 cm" />
<mx:Object recordName="Longest goldfish" recordAmount="47.4 cm" />
<mx:Object recordName="Largest omelette" recordAmount="2.95 metric tonnes" />
<mx:Object recordName="Largest tiramisu" recordAmount="216 kg" />
</mx:Array>
</mx:dataProvider>
<mx:columns>
<mx:DataGridColumn dataField="recordName" headerText="The Name of the World Record" headerWordWrap="true" />
<mx:DataGridColumn dataField="recordAmount" headerText="The Amount of the Metric Being Measured" headerWordWrap="true" />
</mx:columns>
</mx:DataGrid>
</mx:Canvas>
<!--=========================================================
Combine lockedRowCount, variableRowHeight, wordWrap,
and headerWordWrap.
lockedRowCount: 3
variableRowHeight & wordWrap: true
headerWordWrap: true, true
=========================================================-->
<mx:Canvas>
<mx:DataGrid id="dg_mxml_config9_mouseover" height="{dg_mxml_config1_mouseover.height}" width="{dg_mxml_config1_mouseover.width}"
lockedRowCount="3" wordWrap="true" variableRowHeight="true" x="0" y="0" >
<mx:dataProvider>
<mx:Array>
<mx:Object recordName="Tennis balls held in mouth by a dog" recordAmount="5" />
<mx:Object recordName="Loudest burp" recordAmount="104.9 decibels" />
<mx:Object recordName="Longest ear hair" recordAmount="13.2 cm" />
<mx:Object recordName="Longest tongue" recordAmount="9.5 cm" />
<mx:Object recordName="Furthest eyeball popper" recordAmount="11 mm" />
<mx:Object recordName="Longest lawn mower ride" recordAmount="23,487.5 km" />
<mx:Object recordName="Largest carved sapphire" recordAmount="80,500 carats" />
<mx:Object recordName="Largest cut diamond" recordAmount="555.55 carats" />
<mx:Object recordName="Longest golf cart" recordAmount="5.81 m" />
<mx:Object recordName="Soccer ball heading" recordAmount="8 hr 32 min 3 sec" />
<mx:Object recordName="Most touches in one minute with head" recordAmount="319" />
<mx:Object recordName="Largest millipede" recordAmount="38.7 cm" />
<mx:Object recordName="Fastest eater" recordAmount="Star-nosed mole (120 ms)" />
<mx:Object recordName="Highest jump by a pig" recordAmount="70 cm" />
<mx:Object recordName="Longest goldfish" recordAmount="47.4 cm" />
<mx:Object recordName="Largest omelette" recordAmount="2.95 metric tonnes" />
<mx:Object recordName="Largest tiramisu" recordAmount="216 kg" />
</mx:Array>
</mx:dataProvider>
<mx:columns>
<mx:DataGridColumn dataField="recordName" headerText="The Name of the World Record" headerWordWrap="true" />
<mx:DataGridColumn dataField="recordAmount" headerText="The Amount of the Metric Being Measured" headerWordWrap="true" />
</mx:columns>
</mx:DataGrid>
<mx:DataGrid id="dg_mxml_config9_scrolldown" height="{dg_mxml_config1_mouseover.height}" width="{dg_mxml_config1_mouseover.width}"
lockedRowCount="3" wordWrap="true" variableRowHeight="true"
x="{dg_mxml_config1_mouseover.width + 10}"
y="0" >
<mx:dataProvider>
<mx:Array>
<mx:Object recordName="Tennis balls held in mouth by a dog" recordAmount="5" />
<mx:Object recordName="Loudest burp" recordAmount="104.9 decibels" />
<mx:Object recordName="Longest ear hair" recordAmount="13.2 cm" />
<mx:Object recordName="Longest tongue" recordAmount="9.5 cm" />
<mx:Object recordName="Furthest eyeball popper" recordAmount="11 mm" />
<mx:Object recordName="Longest lawn mower ride" recordAmount="23,487.5 km" />
<mx:Object recordName="Largest carved sapphire" recordAmount="80,500 carats" />
<mx:Object recordName="Largest cut diamond" recordAmount="555.55 carats" />
<mx:Object recordName="Longest golf cart" recordAmount="5.81 m" />
<mx:Object recordName="Soccer ball heading" recordAmount="8 hr 32 min 3 sec" />
<mx:Object recordName="Most touches in one minute with head" recordAmount="319" />
<mx:Object recordName="Largest millipede" recordAmount="38.7 cm" />
<mx:Object recordName="Fastest eater" recordAmount="Star-nosed mole (120 ms)" />
<mx:Object recordName="Highest jump by a pig" recordAmount="70 cm" />
<mx:Object recordName="Longest goldfish" recordAmount="47.4 cm" />
<mx:Object recordName="Largest omelette" recordAmount="2.95 metric tonnes" />
<mx:Object recordName="Largest tiramisu" recordAmount="216 kg" />
</mx:Array>
</mx:dataProvider>
<mx:columns>
<mx:DataGridColumn dataField="recordName" headerText="The Name of the World Record" headerWordWrap="true" />
<mx:DataGridColumn dataField="recordAmount" headerText="The Amount of the Metric Being Measured" headerWordWrap="true" />
</mx:columns>
</mx:DataGrid>
<mx:DataGrid id="dg_mxml_config9_scrollup" height="{dg_mxml_config1_mouseover.height}" width="{dg_mxml_config1_mouseover.width}"
lockedRowCount="3" wordWrap="true" variableRowHeight="true"
x="{dg_mxml_config1_mouseover.width * 2 + 20}"
y="0" >
<mx:dataProvider>
<mx:Array>
<mx:Object recordName="Tennis balls held in mouth by a dog" recordAmount="5" />
<mx:Object recordName="Loudest burp" recordAmount="104.9 decibels" />
<mx:Object recordName="Longest ear hair" recordAmount="13.2 cm" />
<mx:Object recordName="Longest tongue" recordAmount="9.5 cm" />
<mx:Object recordName="Furthest eyeball popper" recordAmount="11 mm" />
<mx:Object recordName="Longest lawn mower ride" recordAmount="23,487.5 km" />
<mx:Object recordName="Largest carved sapphire" recordAmount="80,500 carats" />
<mx:Object recordName="Largest cut diamond" recordAmount="555.55 carats" />
<mx:Object recordName="Longest golf cart" recordAmount="5.81 m" />
<mx:Object recordName="Soccer ball heading" recordAmount="8 hr 32 min 3 sec" />
<mx:Object recordName="Most touches in one minute with head" recordAmount="319" />
<mx:Object recordName="Largest millipede" recordAmount="38.7 cm" />
<mx:Object recordName="Fastest eater" recordAmount="Star-nosed mole (120 ms)" />
<mx:Object recordName="Highest jump by a pig" recordAmount="70 cm" />
<mx:Object recordName="Longest goldfish" recordAmount="47.4 cm" />
<mx:Object recordName="Largest omelette" recordAmount="2.95 metric tonnes" />
<mx:Object recordName="Largest tiramisu" recordAmount="216 kg" />
</mx:Array>
</mx:dataProvider>
<mx:columns>
<mx:DataGridColumn dataField="recordName" headerText="The Name of the World Record" headerWordWrap="true" />
<mx:DataGridColumn dataField="recordAmount" headerText="The Amount of the Metric Being Measured" headerWordWrap="true" />
</mx:columns>
</mx:DataGrid>
<mx:DataGrid id="dg_mxml_config9_sortleft" height="{dg_mxml_config1_mouseover.height}" width="{dg_mxml_config1_mouseover.width}"
lockedRowCount="3" wordWrap="true" variableRowHeight="true"
x="0"
y="{dg_mxml_config1_mouseover.height + 10}" >
<mx:dataProvider>
<mx:Array>
<mx:Object recordName="Tennis balls held in mouth by a dog" recordAmount="5" />
<mx:Object recordName="Loudest burp" recordAmount="104.9 decibels" />
<mx:Object recordName="Longest ear hair" recordAmount="13.2 cm" />
<mx:Object recordName="Longest tongue" recordAmount="9.5 cm" />
<mx:Object recordName="Furthest eyeball popper" recordAmount="11 mm" />
<mx:Object recordName="Longest lawn mower ride" recordAmount="23,487.5 km" />
<mx:Object recordName="Largest carved sapphire" recordAmount="80,500 carats" />
<mx:Object recordName="Largest cut diamond" recordAmount="555.55 carats" />
<mx:Object recordName="Longest golf cart" recordAmount="5.81 m" />
<mx:Object recordName="Soccer ball heading" recordAmount="8 hr 32 min 3 sec" />
<mx:Object recordName="Most touches in one minute with head" recordAmount="319" />
<mx:Object recordName="Largest millipede" recordAmount="38.7 cm" />
<mx:Object recordName="Fastest eater" recordAmount="Star-nosed mole (120 ms)" />
<mx:Object recordName="Highest jump by a pig" recordAmount="70 cm" />
<mx:Object recordName="Longest goldfish" recordAmount="47.4 cm" />
<mx:Object recordName="Largest omelette" recordAmount="2.95 metric tonnes" />
<mx:Object recordName="Largest tiramisu" recordAmount="216 kg" />
</mx:Array>
</mx:dataProvider>
<mx:columns>
<mx:DataGridColumn dataField="recordName" headerText="The Name of the World Record" headerWordWrap="true" />
<mx:DataGridColumn dataField="recordAmount" headerText="The Amount of the Metric Being Measured" headerWordWrap="true" />
</mx:columns>
</mx:DataGrid>
<mx:DataGrid id="dg_mxml_config9_sortright" height="{dg_mxml_config1_mouseover.height}" width="{dg_mxml_config1_mouseover.width}"
lockedRowCount="3" wordWrap="true" variableRowHeight="true"
x="{dg_mxml_config1_mouseover.width + 10}"
y="{dg_mxml_config1_mouseover.height + 10}" >
<mx:dataProvider>
<mx:Array>
<mx:Object recordName="Tennis balls held in mouth by a dog" recordAmount="5" />
<mx:Object recordName="Loudest burp" recordAmount="104.9 decibels" />
<mx:Object recordName="Longest ear hair" recordAmount="13.2 cm" />
<mx:Object recordName="Longest tongue" recordAmount="9.5 cm" />
<mx:Object recordName="Furthest eyeball popper" recordAmount="11 mm" />
<mx:Object recordName="Longest lawn mower ride" recordAmount="23,487.5 km" />
<mx:Object recordName="Largest carved sapphire" recordAmount="80,500 carats" />
<mx:Object recordName="Largest cut diamond" recordAmount="555.55 carats" />
<mx:Object recordName="Longest golf cart" recordAmount="5.81 m" />
<mx:Object recordName="Soccer ball heading" recordAmount="8 hr 32 min 3 sec" />
<mx:Object recordName="Most touches in one minute with head" recordAmount="319" />
<mx:Object recordName="Largest millipede" recordAmount="38.7 cm" />
<mx:Object recordName="Fastest eater" recordAmount="Star-nosed mole (120 ms)" />
<mx:Object recordName="Highest jump by a pig" recordAmount="70 cm" />
<mx:Object recordName="Longest goldfish" recordAmount="47.4 cm" />
<mx:Object recordName="Largest omelette" recordAmount="2.95 metric tonnes" />
<mx:Object recordName="Largest tiramisu" recordAmount="216 kg" />
</mx:Array>
</mx:dataProvider>
<mx:columns>
<mx:DataGridColumn dataField="recordName" headerText="The Name of the World Record" headerWordWrap="true" />
<mx:DataGridColumn dataField="recordAmount" headerText="The Amount of the Metric Being Measured" headerWordWrap="true" />
</mx:columns>
</mx:DataGrid>
</mx:Canvas>
<!--=========================================================
Combine lockedRowCount, variableRowHeight, wordWrap,
and headerWordWrap.
lockedRowCount: 3
variableRowHeight & wordWrap: true
headerWordWrap: false, true
=========================================================-->
<mx:Canvas>
<mx:DataGrid id="dg_mxml_config10_mouseover" height="{dg_mxml_config1_mouseover.height}" width="{dg_mxml_config1_mouseover.width}"
lockedRowCount="3" wordWrap="true" variableRowHeight="true" x="0" y="0" >
<mx:dataProvider>
<mx:Array>
<mx:Object recordName="Tennis balls held in mouth by a dog" recordAmount="5" />
<mx:Object recordName="Loudest burp" recordAmount="104.9 decibels" />
<mx:Object recordName="Longest ear hair" recordAmount="13.2 cm" />
<mx:Object recordName="Longest tongue" recordAmount="9.5 cm" />
<mx:Object recordName="Furthest eyeball popper" recordAmount="11 mm" />
<mx:Object recordName="Longest lawn mower ride" recordAmount="23,487.5 km" />
<mx:Object recordName="Largest carved sapphire" recordAmount="80,500 carats" />
<mx:Object recordName="Largest cut diamond" recordAmount="555.55 carats" />
<mx:Object recordName="Longest golf cart" recordAmount="5.81 m" />
<mx:Object recordName="Soccer ball heading" recordAmount="8 hr 32 min 3 sec" />
<mx:Object recordName="Most touches in one minute with head" recordAmount="319" />
<mx:Object recordName="Largest millipede" recordAmount="38.7 cm" />
<mx:Object recordName="Fastest eater" recordAmount="Star-nosed mole (120 ms)" />
<mx:Object recordName="Highest jump by a pig" recordAmount="70 cm" />
<mx:Object recordName="Longest goldfish" recordAmount="47.4 cm" />
<mx:Object recordName="Largest omelette" recordAmount="2.95 metric tonnes" />
<mx:Object recordName="Largest tiramisu" recordAmount="216 kg" />
</mx:Array>
</mx:dataProvider>
<mx:columns>
<mx:DataGridColumn dataField="recordName" headerText="The Name of the World Record" headerWordWrap="false" />
<mx:DataGridColumn dataField="recordAmount" headerText="The Amount of the Metric Being Measured" headerWordWrap="true" />
</mx:columns>
</mx:DataGrid>
<mx:DataGrid id="dg_mxml_config10_scrolldown" height="{dg_mxml_config1_mouseover.height}" width="{dg_mxml_config1_mouseover.width}"
lockedRowCount="3" wordWrap="true" variableRowHeight="true"
x="{dg_mxml_config1_mouseover.width + 10}"
y="0" >
<mx:dataProvider>
<mx:Array>
<mx:Object recordName="Tennis balls held in mouth by a dog" recordAmount="5" />
<mx:Object recordName="Loudest burp" recordAmount="104.9 decibels" />
<mx:Object recordName="Longest ear hair" recordAmount="13.2 cm" />
<mx:Object recordName="Longest tongue" recordAmount="9.5 cm" />
<mx:Object recordName="Furthest eyeball popper" recordAmount="11 mm" />
<mx:Object recordName="Longest lawn mower ride" recordAmount="23,487.5 km" />
<mx:Object recordName="Largest carved sapphire" recordAmount="80,500 carats" />
<mx:Object recordName="Largest cut diamond" recordAmount="555.55 carats" />
<mx:Object recordName="Longest golf cart" recordAmount="5.81 m" />
<mx:Object recordName="Soccer ball heading" recordAmount="8 hr 32 min 3 sec" />
<mx:Object recordName="Most touches in one minute with head" recordAmount="319" />
<mx:Object recordName="Largest millipede" recordAmount="38.7 cm" />
<mx:Object recordName="Fastest eater" recordAmount="Star-nosed mole (120 ms)" />
<mx:Object recordName="Highest jump by a pig" recordAmount="70 cm" />
<mx:Object recordName="Longest goldfish" recordAmount="47.4 cm" />
<mx:Object recordName="Largest omelette" recordAmount="2.95 metric tonnes" />
<mx:Object recordName="Largest tiramisu" recordAmount="216 kg" />
</mx:Array>
</mx:dataProvider>
<mx:columns>
<mx:DataGridColumn dataField="recordName" headerText="The Name of the World Record" headerWordWrap="false" />
<mx:DataGridColumn dataField="recordAmount" headerText="The Amount of the Metric Being Measured" headerWordWrap="true" />
</mx:columns>
</mx:DataGrid>
<mx:DataGrid id="dg_mxml_config10_scrollup" height="{dg_mxml_config1_mouseover.height}" width="{dg_mxml_config1_mouseover.width}"
lockedRowCount="3" wordWrap="true" variableRowHeight="true"
x="{dg_mxml_config1_mouseover.width * 2 + 20}"
y="0" >
<mx:dataProvider>
<mx:Array>
<mx:Object recordName="Tennis balls held in mouth by a dog" recordAmount="5" />
<mx:Object recordName="Loudest burp" recordAmount="104.9 decibels" />
<mx:Object recordName="Longest ear hair" recordAmount="13.2 cm" />
<mx:Object recordName="Longest tongue" recordAmount="9.5 cm" />
<mx:Object recordName="Furthest eyeball popper" recordAmount="11 mm" />
<mx:Object recordName="Longest lawn mower ride" recordAmount="23,487.5 km" />
<mx:Object recordName="Largest carved sapphire" recordAmount="80,500 carats" />
<mx:Object recordName="Largest cut diamond" recordAmount="555.55 carats" />
<mx:Object recordName="Longest golf cart" recordAmount="5.81 m" />
<mx:Object recordName="Soccer ball heading" recordAmount="8 hr 32 min 3 sec" />
<mx:Object recordName="Most touches in one minute with head" recordAmount="319" />
<mx:Object recordName="Largest millipede" recordAmount="38.7 cm" />
<mx:Object recordName="Fastest eater" recordAmount="Star-nosed mole (120 ms)" />
<mx:Object recordName="Highest jump by a pig" recordAmount="70 cm" />
<mx:Object recordName="Longest goldfish" recordAmount="47.4 cm" />
<mx:Object recordName="Largest omelette" recordAmount="2.95 metric tonnes" />
<mx:Object recordName="Largest tiramisu" recordAmount="216 kg" />
</mx:Array>
</mx:dataProvider>
<mx:columns>
<mx:DataGridColumn dataField="recordName" headerText="The Name of the World Record" headerWordWrap="false" />
<mx:DataGridColumn dataField="recordAmount" headerText="The Amount of the Metric Being Measured" headerWordWrap="true" />
</mx:columns>
</mx:DataGrid>
<mx:DataGrid id="dg_mxml_config10_sortleft" height="{dg_mxml_config1_mouseover.height}" width="{dg_mxml_config1_mouseover.width}"
lockedRowCount="3" wordWrap="true" variableRowHeight="true"
x="0"
y="{dg_mxml_config1_mouseover.height + 10}" >
<mx:dataProvider>
<mx:Array>
<mx:Object recordName="Tennis balls held in mouth by a dog" recordAmount="5" />
<mx:Object recordName="Loudest burp" recordAmount="104.9 decibels" />
<mx:Object recordName="Longest ear hair" recordAmount="13.2 cm" />
<mx:Object recordName="Longest tongue" recordAmount="9.5 cm" />
<mx:Object recordName="Furthest eyeball popper" recordAmount="11 mm" />
<mx:Object recordName="Longest lawn mower ride" recordAmount="23,487.5 km" />
<mx:Object recordName="Largest carved sapphire" recordAmount="80,500 carats" />
<mx:Object recordName="Largest cut diamond" recordAmount="555.55 carats" />
<mx:Object recordName="Longest golf cart" recordAmount="5.81 m" />
<mx:Object recordName="Soccer ball heading" recordAmount="8 hr 32 min 3 sec" />
<mx:Object recordName="Most touches in one minute with head" recordAmount="319" />
<mx:Object recordName="Largest millipede" recordAmount="38.7 cm" />
<mx:Object recordName="Fastest eater" recordAmount="Star-nosed mole (120 ms)" />
<mx:Object recordName="Highest jump by a pig" recordAmount="70 cm" />
<mx:Object recordName="Longest goldfish" recordAmount="47.4 cm" />
<mx:Object recordName="Largest omelette" recordAmount="2.95 metric tonnes" />
<mx:Object recordName="Largest tiramisu" recordAmount="216 kg" />
</mx:Array>
</mx:dataProvider>
<mx:columns>
<mx:DataGridColumn dataField="recordName" headerText="The Name of the World Record" headerWordWrap="false" />
<mx:DataGridColumn dataField="recordAmount" headerText="The Amount of the Metric Being Measured" headerWordWrap="true" />
</mx:columns>
</mx:DataGrid>
<mx:DataGrid id="dg_mxml_config10_sortright" height="{dg_mxml_config1_mouseover.height}" width="{dg_mxml_config1_mouseover.width}"
lockedRowCount="3" wordWrap="true" variableRowHeight="true"
x="{dg_mxml_config1_mouseover.width + 10}"
y="{dg_mxml_config1_mouseover.height + 10}" >
<mx:dataProvider>
<mx:Array>
<mx:Object recordName="Tennis balls held in mouth by a dog" recordAmount="5" />
<mx:Object recordName="Loudest burp" recordAmount="104.9 decibels" />
<mx:Object recordName="Longest ear hair" recordAmount="13.2 cm" />
<mx:Object recordName="Longest tongue" recordAmount="9.5 cm" />
<mx:Object recordName="Furthest eyeball popper" recordAmount="11 mm" />
<mx:Object recordName="Longest lawn mower ride" recordAmount="23,487.5 km" />
<mx:Object recordName="Largest carved sapphire" recordAmount="80,500 carats" />
<mx:Object recordName="Largest cut diamond" recordAmount="555.55 carats" />
<mx:Object recordName="Longest golf cart" recordAmount="5.81 m" />
<mx:Object recordName="Soccer ball heading" recordAmount="8 hr 32 min 3 sec" />
<mx:Object recordName="Most touches in one minute with head" recordAmount="319" />
<mx:Object recordName="Largest millipede" recordAmount="38.7 cm" />
<mx:Object recordName="Fastest eater" recordAmount="Star-nosed mole (120 ms)" />
<mx:Object recordName="Highest jump by a pig" recordAmount="70 cm" />
<mx:Object recordName="Longest goldfish" recordAmount="47.4 cm" />
<mx:Object recordName="Largest omelette" recordAmount="2.95 metric tonnes" />
<mx:Object recordName="Largest tiramisu" recordAmount="216 kg" />
</mx:Array>
</mx:dataProvider>
<mx:columns>
<mx:DataGridColumn dataField="recordName" headerText="The Name of the World Record" headerWordWrap="false" />
<mx:DataGridColumn dataField="recordAmount" headerText="The Amount of the Metric Being Measured" headerWordWrap="true" />
</mx:columns>
</mx:DataGrid>
</mx:Canvas>
<!--=========================================================
Combine lockedRowCount, variableRowHeight, wordWrap,
and headerWordWrap.
lockedRowCount: 4
variableRowHeight & wordWrap: true
headerWordWrap: true, false
=========================================================-->
<mx:Canvas>
<mx:DataGrid id="dg_mxml_config11_mouseover" height="{dg_mxml_config1_mouseover.height}" width="{dg_mxml_config1_mouseover.width}"
lockedRowCount="4" wordWrap="true" variableRowHeight="true" x="0" y="0" >
<mx:dataProvider>
<mx:Array>
<mx:Object recordName="Tennis balls held in mouth by a dog" recordAmount="5" />
<mx:Object recordName="Loudest burp" recordAmount="104.9 decibels" />
<mx:Object recordName="Longest ear hair" recordAmount="13.2 cm" />
<mx:Object recordName="Longest tongue" recordAmount="9.5 cm" />
<mx:Object recordName="Furthest eyeball popper" recordAmount="11 mm" />
<mx:Object recordName="Longest lawn mower ride" recordAmount="23,487.5 km" />
<mx:Object recordName="Largest carved sapphire" recordAmount="80,500 carats" />
<mx:Object recordName="Largest cut diamond" recordAmount="555.55 carats" />
<mx:Object recordName="Longest golf cart" recordAmount="5.81 m" />
<mx:Object recordName="Soccer ball heading" recordAmount="8 hr 32 min 3 sec" />
<mx:Object recordName="Most touches in one minute with head" recordAmount="319" />
<mx:Object recordName="Largest millipede" recordAmount="38.7 cm" />
<mx:Object recordName="Fastest eater" recordAmount="Star-nosed mole (120 ms)" />
<mx:Object recordName="Highest jump by a pig" recordAmount="70 cm" />
<mx:Object recordName="Longest goldfish" recordAmount="47.4 cm" />
<mx:Object recordName="Largest omelette" recordAmount="2.95 metric tonnes" />
<mx:Object recordName="Largest tiramisu" recordAmount="216 kg" />
</mx:Array>
</mx:dataProvider>
<mx:columns>
<mx:DataGridColumn dataField="recordName" headerText="The Name of the World Record" headerWordWrap="true" />
<mx:DataGridColumn dataField="recordAmount" headerText="The Amount of the Metric Being Measured" headerWordWrap="false" />
</mx:columns>
</mx:DataGrid>
<mx:DataGrid id="dg_mxml_config11_scrolldown" height="{dg_mxml_config1_mouseover.height}" width="{dg_mxml_config1_mouseover.width}"
lockedRowCount="4" wordWrap="true" variableRowHeight="true"
x="{dg_mxml_config1_mouseover.width + 10}"
y="0" >
<mx:dataProvider>
<mx:Array>
<mx:Object recordName="Tennis balls held in mouth by a dog" recordAmount="5" />
<mx:Object recordName="Loudest burp" recordAmount="104.9 decibels" />
<mx:Object recordName="Longest ear hair" recordAmount="13.2 cm" />
<mx:Object recordName="Longest tongue" recordAmount="9.5 cm" />
<mx:Object recordName="Furthest eyeball popper" recordAmount="11 mm" />
<mx:Object recordName="Longest lawn mower ride" recordAmount="23,487.5 km" />
<mx:Object recordName="Largest carved sapphire" recordAmount="80,500 carats" />
<mx:Object recordName="Largest cut diamond" recordAmount="555.55 carats" />
<mx:Object recordName="Longest golf cart" recordAmount="5.81 m" />
<mx:Object recordName="Soccer ball heading" recordAmount="8 hr 32 min 3 sec" />
<mx:Object recordName="Most touches in one minute with head" recordAmount="319" />
<mx:Object recordName="Largest millipede" recordAmount="38.7 cm" />
<mx:Object recordName="Fastest eater" recordAmount="Star-nosed mole (120 ms)" />
<mx:Object recordName="Highest jump by a pig" recordAmount="70 cm" />
<mx:Object recordName="Longest goldfish" recordAmount="47.4 cm" />
<mx:Object recordName="Largest omelette" recordAmount="2.95 metric tonnes" />
<mx:Object recordName="Largest tiramisu" recordAmount="216 kg" />
</mx:Array>
</mx:dataProvider>
<mx:columns>
<mx:DataGridColumn dataField="recordName" headerText="The Name of the World Record" headerWordWrap="true" />
<mx:DataGridColumn dataField="recordAmount" headerText="The Amount of the Metric Being Measured" headerWordWrap="false" />
</mx:columns>
</mx:DataGrid>
<mx:DataGrid id="dg_mxml_config11_scrollup" height="{dg_mxml_config1_mouseover.height}" width="{dg_mxml_config1_mouseover.width}"
lockedRowCount="4" wordWrap="true" variableRowHeight="true"
x="{dg_mxml_config1_mouseover.width * 2 + 20}"
y="0" >
<mx:dataProvider>
<mx:Array>
<mx:Object recordName="Tennis balls held in mouth by a dog" recordAmount="5" />
<mx:Object recordName="Loudest burp" recordAmount="104.9 decibels" />
<mx:Object recordName="Longest ear hair" recordAmount="13.2 cm" />
<mx:Object recordName="Longest tongue" recordAmount="9.5 cm" />
<mx:Object recordName="Furthest eyeball popper" recordAmount="11 mm" />
<mx:Object recordName="Longest lawn mower ride" recordAmount="23,487.5 km" />
<mx:Object recordName="Largest carved sapphire" recordAmount="80,500 carats" />
<mx:Object recordName="Largest cut diamond" recordAmount="555.55 carats" />
<mx:Object recordName="Longest golf cart" recordAmount="5.81 m" />
<mx:Object recordName="Soccer ball heading" recordAmount="8 hr 32 min 3 sec" />
<mx:Object recordName="Most touches in one minute with head" recordAmount="319" />
<mx:Object recordName="Largest millipede" recordAmount="38.7 cm" />
<mx:Object recordName="Fastest eater" recordAmount="Star-nosed mole (120 ms)" />
<mx:Object recordName="Highest jump by a pig" recordAmount="70 cm" />
<mx:Object recordName="Longest goldfish" recordAmount="47.4 cm" />
<mx:Object recordName="Largest omelette" recordAmount="2.95 metric tonnes" />
<mx:Object recordName="Largest tiramisu" recordAmount="216 kg" />
</mx:Array>
</mx:dataProvider>
<mx:columns>
<mx:DataGridColumn dataField="recordName" headerText="The Name of the World Record" headerWordWrap="true" />
<mx:DataGridColumn dataField="recordAmount" headerText="The Amount of the Metric Being Measured" headerWordWrap="false" />
</mx:columns>
</mx:DataGrid>
<mx:DataGrid id="dg_mxml_config11_sortleft" height="{dg_mxml_config1_mouseover.height}" width="{dg_mxml_config1_mouseover.width}"
lockedRowCount="4" wordWrap="true" variableRowHeight="true"
x="0"
y="{dg_mxml_config1_mouseover.height + 10}" >
<mx:dataProvider>
<mx:Array>
<mx:Object recordName="Tennis balls held in mouth by a dog" recordAmount="5" />
<mx:Object recordName="Loudest burp" recordAmount="104.9 decibels" />
<mx:Object recordName="Longest ear hair" recordAmount="13.2 cm" />
<mx:Object recordName="Longest tongue" recordAmount="9.5 cm" />
<mx:Object recordName="Furthest eyeball popper" recordAmount="11 mm" />
<mx:Object recordName="Longest lawn mower ride" recordAmount="23,487.5 km" />
<mx:Object recordName="Largest carved sapphire" recordAmount="80,500 carats" />
<mx:Object recordName="Largest cut diamond" recordAmount="555.55 carats" />
<mx:Object recordName="Longest golf cart" recordAmount="5.81 m" />
<mx:Object recordName="Soccer ball heading" recordAmount="8 hr 32 min 3 sec" />
<mx:Object recordName="Most touches in one minute with head" recordAmount="319" />
<mx:Object recordName="Largest millipede" recordAmount="38.7 cm" />
<mx:Object recordName="Fastest eater" recordAmount="Star-nosed mole (120 ms)" />
<mx:Object recordName="Highest jump by a pig" recordAmount="70 cm" />
<mx:Object recordName="Longest goldfish" recordAmount="47.4 cm" />
<mx:Object recordName="Largest omelette" recordAmount="2.95 metric tonnes" />
<mx:Object recordName="Largest tiramisu" recordAmount="216 kg" />
</mx:Array>
</mx:dataProvider>
<mx:columns>
<mx:DataGridColumn dataField="recordName" headerText="The Name of the World Record" headerWordWrap="true" />
<mx:DataGridColumn dataField="recordAmount" headerText="The Amount of the Metric Being Measured" headerWordWrap="false" />
</mx:columns>
</mx:DataGrid>
<mx:DataGrid id="dg_mxml_config11_sortright" height="{dg_mxml_config1_mouseover.height}" width="{dg_mxml_config1_mouseover.width}"
lockedRowCount="4" wordWrap="true" variableRowHeight="true"
x="{dg_mxml_config1_mouseover.width + 10}"
y="{dg_mxml_config1_mouseover.height + 10}" >
<mx:dataProvider>
<mx:Array>
<mx:Object recordName="Tennis balls held in mouth by a dog" recordAmount="5" />
<mx:Object recordName="Loudest burp" recordAmount="104.9 decibels" />
<mx:Object recordName="Longest ear hair" recordAmount="13.2 cm" />
<mx:Object recordName="Longest tongue" recordAmount="9.5 cm" />
<mx:Object recordName="Furthest eyeball popper" recordAmount="11 mm" />
<mx:Object recordName="Longest lawn mower ride" recordAmount="23,487.5 km" />
<mx:Object recordName="Largest carved sapphire" recordAmount="80,500 carats" />
<mx:Object recordName="Largest cut diamond" recordAmount="555.55 carats" />
<mx:Object recordName="Longest golf cart" recordAmount="5.81 m" />
<mx:Object recordName="Soccer ball heading" recordAmount="8 hr 32 min 3 sec" />
<mx:Object recordName="Most touches in one minute with head" recordAmount="319" />
<mx:Object recordName="Largest millipede" recordAmount="38.7 cm" />
<mx:Object recordName="Fastest eater" recordAmount="Star-nosed mole (120 ms)" />
<mx:Object recordName="Highest jump by a pig" recordAmount="70 cm" />
<mx:Object recordName="Longest goldfish" recordAmount="47.4 cm" />
<mx:Object recordName="Largest omelette" recordAmount="2.95 metric tonnes" />
<mx:Object recordName="Largest tiramisu" recordAmount="216 kg" />
</mx:Array>
</mx:dataProvider>
<mx:columns>
<mx:DataGridColumn dataField="recordName" headerText="The Name of the World Record" headerWordWrap="true" />
<mx:DataGridColumn dataField="recordAmount" headerText="The Amount of the Metric Being Measured" headerWordWrap="false" />
</mx:columns>
</mx:DataGrid>
</mx:Canvas>
<!-- Now we start getting to other tests -->
<mx:Canvas>
<mx:DataGrid id="dg_mxml_lockedRowCount_noDataProvider" height="{dg_mxml_config1_mouseover.height}" width="{dg_mxml_config1_mouseover.width}"
lockedRowCount="4"
x="{dg_mxml_config1_mouseover.x}"
y="{dg_mxml_config1_mouseover.y}" >
<mx:columns>
<mx:DataGridColumn headerText="Column 1" />
<mx:DataGridColumn headerText="Column 2" />
</mx:columns>
</mx:DataGrid>
</mx:Canvas>
<mx:Canvas>
<mx:Text text="This page intentionally left blank." />
</mx:Canvas>
</mx:ViewStack>
<mx:HBox y="{vs.y + vs.height + 10}">
<mx:Label text="Use this to toggle the view stack when authoring tests." />
<mx:NumericStepper id="ns" value="0" maximum="11" />
</mx:HBox>
</mx:Application>