MACROMEDIA FLEX-GETTING STARTED WITH FLEX Getting Started page 77

Table of Contents

Advertisement

...
<mx:TileList id="myTile" dataProvider="{dataObject}"
cellRenderer="ProductThumbnail"
width="100%" height="100%"
itemWidth="120" itemHeight="116"
borderStyle="none"
dragEnabled="true"
change="selectedItem=dataObject[myTile.selectedIndex];
dispatchEvent({type:'change'})
"/>
The component is declared in the ThumbnailView.mxml file using a
ThumbnailView
The ThumbnailView object is defined in an MXML component because it is a visual object that
you can create using MXML tags and a small amount of ActionScript code. The top-level tag of
the ThumbnailView component is a VBox container.
The component is declared in the FlexStore.mxml file using a
The component contains the following properties defined in an
var selectedItem
var dataObject
var min
var max
The
property stores catalog data.
dataObject
The component contains the following methods defined in an
filter()
sort()
unselect()
The component contains an
components in a grid format.
The following example from the FlexStore.mxml file shows how the
to the
catalog.product
using the default namespace.
<ThumbnailView id="thumbView"
label="Product Catalog"
dataObject="{catalog}"
change="selectedItem=event.target.selectedItem"
/>
ProductDetail
The ProductDetail object is defined in an MXML component because it is a visual object that
you can create using MXML tags and a small amount of ActionScript code. The top-level tag of
the ProductDetail component is a VBox container.
tag for displaying a set of ProductThumbnail
<mx:TileList>
property. Notice that you reference the custom ThumbNailView object
<ProductThumbnail>
tag.
<ThumbnailView>
tag:
<mx:Script>
tag:
<mx:Script>
property is set
dataObject
Architecting an application
tag.
77

Advertisement

Table of Contents
loading
Need help?

Need help?

Do you have a question about the FLEX-GETTING STARTED WITH FLEX and is the answer not in the manual?

Questions and answers

This manual is also suitable for:

Flex

Table of Contents