blob: 492e87f64d57008158e35b0b43d39eba696fea44 [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:Canvas xmlns:mx="http://www.adobe.com/2006/mxml" xmlns="*" xmlns:com="DataEffects.*"
creationComplete="startIt()" width="100%" height="100%" >
<mx:Script>
<![CDATA[
import mx.collections.ArrayCollection;
private var myDP0:ArrayCollection = new ArrayCollection(["A","B",'C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z']);
private var myDP1:ArrayCollection = new ArrayCollection([{slno:"1",name:"Joseph",age:"23"},{slno:"2",name:"Jeena",age:"21"},{slno:"3",name:"Jerry",age:"4"}
,{slno:"4",name:"Tom",age:"1"},{slno:"5",name:"Rick",age:"12"},{slno:"6",name:"John",age:"52"}]);
private var myDP2:ArrayCollection = new ArrayCollection(["AAaa Item","BBbb Item",'CCcc Item',
'DDdd Item','EEee Item','FFff Item','GGgg Item','HHhh Item',
'IIii Item','JJjj Item','KKkk Item','LLll Item','MMmm Item',
'NNnn Item','OOoo Item']);
public function startIt():void {
mylist.dataProvider=myDP0;
}
]]>
</mx:Script>
<com:UberDataEffect1 id="uberDataEffect1"/>
<com:UberDataEffect2 id="uberDataEffect2"/>
<com:UberDataEffect3 id="uberDataEffect3"/>
<mx:List id="mylist" x="50" y="50" width="200" height="250" labelField="name" allowMultipleSelection="true" variableRowHeight="true"/>
</mx:Canvas>