Flex中如何截去DataGrid列头部部分文本用一个ToolTip显示的例子
By Minidxer | March 26, 2009
接下来的例子演示了Flex中如何截去DataGrid列头部部分文本用一个ToolTip显示。
让我们先来看一下Demo(可以右键View Source或点击这里察看源代码):
下面是完整代码(或点击这里察看):
Download: main.mxml
- <?xml version="1.0" encoding="utf-8"?>
- <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
- layout="vertical"
- verticalAlign="middle"
- backgroundColor="white">
- <mx:XML id="xmlDP">
- <nodes>
- <node col1="One.1" col2="One.2" />
- <node col1="Two.1" col2="Two.2" />
- <node col1="Three.1" col2="Three.2" />
- <node col1="Four.1" col2="Four.2" />
- <node col1="Five.1" col2="Five.2" />
- <node col1="Six.1" col2="Six.2" />
- <node col1="Seven.1" col2="Seven.2" />
- <node col1="Eight.1" col2="Eight.2" />
- <node col1="Nine.1" col2="Nine.2" />
- </nodes>
- </mx:XML>
- <mx:DataGrid id="dataGrid"
- dataProvider="{xmlDP.node}"
- width="300"
- height="200">
- <mx:columns>
- <mx:DataGridColumn dataField="@col1"
- headerText="The quick brown fox jumped over the lazy dog"
- headerRenderer="mx.controls.Label" />
- <mx:DataGridColumn dataField="@col2"
- headerText="Lorem ipsum dolor sit amet, consectetuer adipiscing elit"
- headerRenderer="mx.controls.Label" />
- </mx:columns>
- </mx:DataGrid>
- </mx:Application>
代码:Peter deHaan 翻译/整理/编译:中文Flex例子
Topics:
DataGrid |
No Comments » |
1,700 views
Tags: DataGrid, DataGridColumn, headerRenderer, Label