在我的flex datagird中,我有一个复选框和一个包含七列的数据网格。
通过Arraycollection填充datgrid的前五列(剩余两列无值)中的值。
现在,通过单击复选框我想显示所有七个列值,如果我取消选中五列必须显示... 怎么可能?任何想法?
继承我的代码
<mx:DataGrid x="33" y="176" width="952" height="334">
<mx:columns>
<mx:DataGridColumn headerText="one" dataField="one"/>
<mx:DataGridColumn headerText="two" dataField="two"/>
<mx:DataGridColumn headerText="three" dataField="three"/>
<mx:DataGridColumn headerText="four" dataField="four"/>
<mx:DataGridColumn headerText="five" dataField="five"/>
<mx:DataGridColumn headerText="six" dataField="six"/>
<mx:DataGridColumn headerText="seven" dataField="seven"/></mx:Datagrid> <mx:Checkbox/>
建议我一些想法...提前谢谢你...
答案 0 :(得分:2)
试试这个,你填充所有字段,但只能控制列的可见性:
<s:CheckBox id="chkShowGridAllFields" label="Show All Details" />
并在您的网格列中:
<mx:DataGridColumn headerText="six" dataField="six"
visible="{chkShowGridAllFields.selected}" width="200" />
<mx:DataGridColumn headerText="seven" dataField="seven"
visible="{chkShowGridAllFields.selected}" width="200" />