<?xml version="1.0" encoding="utf-8"?>
<base:ApplicationBase
xmlns:mx = "http://www.adobe.com/2006/mxml"
xmlns:base = "lib.*"
layout = "vertical"
viewSourceURL = "http://labs.taiga.jp/flex2/ItemRendererCheckBoxSample/srcview/index.html">
<mx:DataGrid id="compSampleDataGrid" width="400" height="170">
<mx:columns>
<mx:DataGridColumn
headerText = "colmn01"
dataField = "checkBoxValue"
itemRenderer = "lib.SubCheckBox"
rendererIsEditor = "true"
editorDataField = "selected"
editable = "true"
/>
<mx:DataGridColumn
headerText = "colmn02"
dataField = "hoge"
itemRenderer = "mx.controls.CheckBox"
rendererIsEditor = "true"
editorDataField = "selected"
editable = "true"
/>
<mx:DataGridColumn
headerText = "colmn03"
dataField = "fuga"
editable = "false"
/>
</mx:columns>
</mx:DataGrid>
<mx:TextArea id="compOutPutTextArea" width="400" height="170" editable="false" />
<mx:Button id="compOutPutButton" label="trace" />
</base:ApplicationBase>