【发布时间】:2011-12-22 08:39:52
【问题描述】:
我的弹性应用程序我有一个 datgrid 如下
<mx:DataGrid id="grid" >
<mx:columns>
<mx:DataGridColumn headerText="Select" dataField="itemSelInd" editable="false" textAlign="center" >
<mx:itemRenderer >
<mx:Component>
<mx:CheckBox>
</mx:CheckBox>
</mx:Component>
</mx:itemRenderer>
</mx:DataGridColumn>
<mx:DataGridColumn dataField="name" headerText="Name"/>
<mx:DataGridColumn dataField="date" headerText="Date"/>
<mx:DataGridColumn dataField="month" headerText="Month"/>
<mx:DataGridColumn dataField="year" headerText="Year"/>
</mx:columns> </mx:DataGrid>
默认可编辑 = false;
现在,如果我选择一个复选框,则相应的行单独应该变得可编辑,它怎么可能? 给我一些建议..thankxx提前!!
【问题讨论】:
标签: apache-flex actionscript datagrid flex3