Data Model Flex



    xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mx="library://ns.adobe.com/flex/mx">
     
         
        import mx.controls.TextInput; 
        import mx.events.DataGridEvent; 
        import mx.events.DataGridEventReason; 
        import mx.formatters.NumberFormatter; 
        import mx.collections.ArrayCollection; 
        [Bindable] 
        private var initDG:ArrayCollection = new ArrayCollection([ 
            {Artist:'Pavement', Album:'Slanted and Enchanted',Price:11.99}, 
            {Artist:'Pavement', Album:'Brighten the Corners',Price:11.99 } 
        ]); 
        private var myFormatter:NumberFormatter=new NumberFormatter(); 
        public function formatData(event:DataGridEvent):void { 
            // Check the reason for the event. 
            if (event.reason == DataGridEventReason.CANCELLED){ 
                // Do not update cell. 
                return; 
            } 
            // Get the new data value from the editor. 
            var newData:String= TextInput(event.currentTarget.itemEditorInstance).text; 
            if(newData == ""){ 
                // Prevent the user from removing focus, 
                // and leave the cell editor open. 
                event.preventDefault(); 
                // Write a message to the errorString property. 
                // This message appears when the user 
                // mouses over the editor. 
                TextInput(myGrid.itemEditorInstance).errorString="Enter a valid string."; 
            } 
        } 
      
    

            itemEditEnd="formatData(event);">