You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
box-o-sand/custom-03d3-lists/ListControl.mxml

27 lines
721 B

<?xml version="1.0" encoding="utf-8"?>
<loc:ListApp xmlns:mx="http://www.adobe.com/2006/mxml"
xmlns:loc="*"
backgroundColor="#FFFFFF"
backgroundAlpha="0"
horizontalAlign="left"
verticalGap="15" horizontalGap="15">
<mx:HTTPService
id="employeesService"
url="http://www.flexmonkeys.com/F3GSE/PartIII/CRUD/employees.xml"
result="resultHandler(event)"/>
<mx:Button label="Return Employees"
click="requestEmployees()" />
<mx:List id="mylist"
labelField="firstName"
dataProvider="{employeeList}"
width="200" height="200"
itemClick="showMessage(event)"/>
<mx:Text id="textMessage"
paddingTop="20" />
</loc:ListApp>