Renderer and Editor for List : List Renderer « Components « Flex






Renderer and Editor for List

Renderer and Editor for List
           


<?xml version="1.0"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
<mx:List editable="true" width="200" labelField="rating" itemRenderer="mx.controls.NumericStepper" rendererIsEditor="true" editorDataField="value">
  <mx:dataProvider>
    <mx:ArrayCollection>
      <mx:Array>
        <mx:Object title="A" rating="5" />
        <mx:Object title="B" rating="3" />
        <mx:Object title="C" rating="4" />
        <mx:Object title="D" rating="5" />
      </mx:Array>
    </mx:ArrayCollection>
  </mx:dataProvider>
</mx:List>

</mx:Application>

   
    
    
    
    
    
    
    
    
    
    
  








Related examples in the same category

1.DropIn RendererDropIn Renderer
2.Inline RendererInline Renderer
3.Inline Renderer with Complex ObjectsInline Renderer with Complex Objects
4.List control uses default item renderer to display stringsList control uses default item renderer to display strings
5.List control uses the default item renderer to display each of the three strings that represent postal codes for Alaska, Alabama, and Arkansas.List control uses the default item renderer to display each of the three strings that represent postal codes for Alaska, Alabama, and Arkansas.
6.Using Image renderer for ListUsing Image renderer for List
7.Specifying an icon to the List controlSpecifying an icon to the List control
8.Editable ListEditable List
9.Create an Editable ListCreate an Editable List