A DataGrid is a formatted table whose items can be edited and displayed via custom renderers.
<?xml version=”1.0″ encoding=”utf-8″?> <mx:Application xmlns:mx=”http://www.adobe.com/2006/mxml” layout=”absolute” creationComplete=”onCreate(event)”> <mx:Script> <![CDATA[ import mx.collections.ArrayCollection; private var Values:ArrayCollection=new ArrayCollection([ {Company:”Google”,Feature:”Mail / Search Engine/Social Network”}, {Company:”Yahoo”,Feature:”Mail /Search Engine”} ]); //Creating an Array Collection with “Company and Feature as Identifiers
|