To create a similar page http://wireless.amazon.com/b/684177011/ref=topnav_br_ph?ie=UTF8&class=link in Flex what are all the basic component involved , just high level is enough here is the template I guess looks like
<VBox>
<comp:Header/>
<HBox>
<comp:SearchLeft/>
//Load all the products in the tile List
<TileList/>
</HBox>
</VBox>开发者_C百科
By Loading all the products into the tile List which takes lot of time to render the whole page , how to resolve this?
For the "Narrow by" sections; I'd probably use some lists with itemRenderers that display check boxes.
For the phone display, I'd use a TileList, which it sounds like you're already using.
A TextInput and a Label for the search box. An Image for the logo. LinkButtons for some of the linksup top.
You can optimize a TileList renderer's time by optimizing your renderers. Without seeing the Renderer code, I'm not sure how to help you with that though.
精彩评论