<?xml version="1.0" encoding="utf-8"?>
<!-- ItemRendererComboBoxSample -->
<base:ApplicationBase
    xmlns:base    = "lib.*"
    xmlns:mx      = "http://www.adobe.com/2006/mxml"
    layout        = "vertical"
    viewSourceURL = "http://labs.taiga.jp/flex2/ItemRendererComboBoxSample/srcview/index.html">

    <mx:DataGrid id="compSampleDataGrid" width="400" height="170">
        <mx:columns>

            <!-- カスタム ComboBox -->
            <mx:DataGridColumn
                headerText       = "colmn01"
                dataField        = "combo"
                itemRenderer     = "lib.SubComboBox"
                rendererIsEditor = "true"
                editorDataField  = "selectedIndex"
                editable         = "true"
            />

            <!-- おまけのラベル -->
            <mx:DataGridColumn
                headerText       = "colmn03"
                dataField        = "hoge"
                editable         = "false"
            />

        </mx:columns>
    </mx:DataGrid>

    <mx:TextArea id="compOutPutTextArea" width="400" height="170" editable="false" />

    <mx:Button id="compOutPutButton" label="trace" />

</base:ApplicationBase>