`
fx05062219
  • 浏览: 19228 次
  • 性别: Icon_minigender_1
  • 来自: 杭州
社区版块
存档分类
最新评论

Flex Datagrid 内容超出 column 宽度显示 tooltip

    博客分类:
  • flex
阅读更多
package 
{
	import mx.controls.dataGridClasses.DataGridItemRenderer;
	
	public class TruncateText extends DataGridItemRenderer 
	{
		private var textTruncated:Boolean = false;
		private var originalText:String;
		
		public function TruncateText()
		{
			super();
		}
		
		override public function set text(value:String):void
		{
			super.text = value;
			originalText = value;
			textTruncated = truncateToFit();
		}
		
		override public function validateProperties():void
		{
			super.validateProperties();
			this.wordWrap=false;
			this.setStyle("paddingTop",0);
			this.setStyle("paddingBottom",0);
			this.setStyle("paddingLeft",0);
			this.setStyle("paddingRight",0);
			toolTip = textTruncated ? originalText : null;
		}
	}
}
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics