lukebayes / waybeams

This project is an exploration of stateless MVC server architecture embedded entirely within rich client software.

This URL has Read+Write access

lukebayes (author)
Sun Jul 05 00:55:29 -0700 2009
commit  c8203dd6e14a991ce1429cf9ed321f1f1934ffef
tree    811fc680cb6d14b8438eb13827bab516cb370916
parent  be7b1dfa4a8764e2c87f3ecda723e32c16e6a309
waybeams / Examples / flex / SimpleStore / src / app / views / products / Index.mxml
100644 20 lines (17 sloc) 0.465 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0" encoding="utf-8"?>
<mx:VBox
    xmlns:mx="http://www.adobe.com/2006/mxml"
    creationComplete="creationCompleteHandler(event)"
    width="100%"
    height="100%"
    backgroundColor="#00CCFF"
    >
    <mx:Script>
        <![CDATA[
        
        private function creationCompleteHandler(event:Event):void {
            trace(">>> index instantiated");
        }
 
        ]]>
    </mx:Script>
    <mx:Label text="Index Loaded" />
</mx:VBox>