Item click event for DataGrid : DataGrid « Grid « Flex






Item click event for DataGrid

Item click event for DataGrid
         

<?xml version="1.0"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
    layout="absolute">
    <mx:Script>
        
        import mx.events.ListEvent;
        private function itemClickEvent(event:ListEvent):void {
            clickColumn.text=String(event.columnIndex);
            clickRow.text=String(event.rowIndex);
            eventType.text=event.type;
        }
      
    </mx:Script>
    <mx:DataGrid id="myGrid" width="350" height="150" itemClick="itemClickEvent(event);" x="112" y="10">
        <mx:ArrayCollection>
            <mx:Object Artist="A" Album="aa" Price="11.99" />
            <mx:Object Artist="B" Album="bb" Price="11.99" />
        </mx:ArrayCollection>
    </mx:DataGrid>
    <mx:TextArea id="clickColumn" x="191" y="199" />
    <mx:TextArea id="clickRow" x="191" y="253" />
    <mx:TextArea id="eventType" x="191" y="305" />
</mx:Application>

   
    
    
    
    
    
    
    
    
  








Related examples in the same category

1.Scroll DataGridScroll DataGrid
2.Set selected index for DataGridSet selected index for DataGrid
3.Variable row heightsVariable row heights
4.Multi-line data grid rowMulti-line data grid row
5.variable scope for DataGridvariable scope for DataGrid
6.Creating inline item renderer and editorCreating inline item renderer and editor
7.Using a DataGridUsing a DataGrid
8.Formatting grid lines with CSSFormatting grid lines with CSS
9.Set editing position for DataGridSet editing position for DataGrid
10.Append new value to DataGrid from Form fieldsAppend new value to DataGrid from Form fields
11.Editable DataGridEditable DataGrid
12.Variable row height DataGridVariable row height DataGrid
13.DataGrid change eventDataGrid change event
14.Use Panel to layout controls and hold DataGridUse Panel to layout controls and hold DataGrid
15.DataGrids take a dataProvider to populate themDataGrids take a dataProvider to populate them
16.Default setting for DataGridDefault setting for DataGrid
17.Call HTTP server and set result to DataGrid
18.Binding XML to DataGridBinding XML to DataGrid
19.DataGrid Configuration through ActionScriptDataGrid Configuration through ActionScript
20.DataGrid Validate NowDataGrid Validate Now
21.DataGrid Validate Now Selected indexDataGrid Validate Now Selected index
22.DataGrid with static string valuesDataGrid with static string values
23.DataGrid DataDataGrid Data
24.DataGrid EventsDataGrid Events
25.Sort a DataGridSort a DataGrid
26.Inline DataGrid Image ScopeInline DataGrid Image Scope
27.Print DataGrid outPrint DataGrid out
28.Enabling the user to move many items at onceEnabling the user to move many items at once
29.data provider contains fields for an artist, album name, and price.data provider contains fields for an artist, album name, and price.