Accessibility

Table of Contents

Learning Flex Basics (Part 1): Creating Your First Flex Application

Add a List Control for the Shopping Cart

The List control is identical to the ComboBox, except that it displays and lets the user select multiple items at once. The List here will have no dataProvider, because it will be empty until the user adds items to it.

  1. After the Button, add a List control with an id of cart:

    <mx:List id="cart"/>