Daily Archives: February 28, 2006

Simple Flex2 Calender with a TileList and a CFC

Here is the main application in Flex:
Main.mxml:

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.macromedia.com/2005/mxml" xmlns="*" layout="absolute"
    creationComplete="svc.getCalendar()">
   
    <mx:Canvas id="BaseCanvas" label="Mobile Calendar">
        <mx:layoutConstraints>
            <mx:Anchor left="10" right="10" top="10" bottom="10"/>
        </mx:layoutConstraints>
       
        <mx anel layout="vertical" id="panel_01" title="Mobile Calendar" width="100%" x="10" [...]