Flex 4 中定制的高级数据网格
我的高级数据网格中有 7 列,并且有一个包含所有列名称的组合框。 数据网格应仅显示用户在组合框中选择的列。这是否意味着高级数据网格列的定制?如果有人有任何样本,请分享。
I had 7 columns in an advanced datagrid and have one comboBox with all of the columns names.
The datagrid should show only the columns the use has selected in the comboBox. Does this mean customization of the advanced datagrid columns? If anyone has any samples, please share them.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
例如,如果你有一个像这样的 DataGrid
你可以触发一些事件并调用这行代码
然后列 colType 将消失。如果您想再次显示该列,只需将 true 值分配给其可见属性即可。
For example if you have a DataGrid like this
You can trigger some event and call this line of code
Then the column colType will disappear. If you want to show that column again, just assign the true value to its visible property.