27 lines
721 B
XML
27 lines
721 B
XML
<?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>
|