`
lorry1113
  • 浏览: 264809 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

动态改变DataGird行的颜色

    博客分类:
  • flex
阅读更多
MXML实现如下:
<?xml version="1.0" encoding="utf-8"?>
<mx:DataGrid xmlns:mx="http://www.adobe.com/2006/mxml">
	  <mx:Script>
	    <![CDATA[
	    	import mx.controls.Alert;
	      override protected function drawRowBackground(s:Sprite, rowIndex:int, y:Number, height:Number, color:uint, dataIndex:int):void
	      {
		      if(dataProvider!="" && dataIndex < dataProvider.length){
		      		if(dataProvider[dataIndex].objectid != "0"){
		      			color = 0xFF6600
		      		}
		      }
	        super.drawRowBackground(s,rowIndex,y,height,color,dataIndex);
	      }
	    ]]>
	  </mx:Script>

	  <mx:columns>
		<mx:DataGridColumn headerText="线路ID" dataField="id" textAlign="left"/>
		<mx:DataGridColumn headerText="线路名称" dataField="name" textAlign="left"/>
	  </mx:columns>
</mx:DataGrid>

在需要加入的页面:
<comp:DataGrid id="dg" dataProvider="{comboData}" horizontalGridLines="true" width="100%" click="queryLineInfo(event)" height="65%" right="0"/>


as3 CLASS实现如下:
package
{
	import flash.display.Sprite;
	
	import mx.collections.ArrayCollection;
	import mx.controls.DataGrid;

	public class RowColorDataGrid extends DataGrid
	{
	//用于设置颜色,参数: 当前item, rowIndex, dataIndex, 当前color
		public var rowColorFunction:Function;
		
		//覆写drawRowBackground,目的是根据rowColorFunction返回颜色设置当前行
		override protected function drawRowBackground(s:Sprite, rowIndex:int, y:Number, height:Number,
										color:uint, dataIndex:int):void
		{
			if(rowColorFunction != null)
			{
				//从dataProvider中获取当前item
				var item:Object;
				if(dataIndex &lt; dataProvider.length)
				{
					item = dataProvider[dataIndex];
				}
				if(item)
				{ //如果当前item存在,从rowColorFunction中获取行的颜色
					color = rowColorFunction(item, rowIndex, dataIndex, color);
				}
				}
				//调用父类方法设置当前行颜色
				super.drawRowBackground(s, rowIndex, y, height, color, dataIndex);
			}
		}
	}
}
分享到:
评论

相关推荐

    wpf datagrid 单元格颜色 根据条件改变颜色 例子

    - 另外,还可以通过监听DataGrid的相关事件(如CellEditEnding、CellsChanged等)并在事件处理程序中动态修改单元格的样式。但这通常不推荐,因为它可能导致性能问题,尤其是在大数据量时。 5. 使用附加属性: - ...

    C#实现改变DataGrid某一行和单元格颜色的方法

    如果需要动态改变颜色,可能需要监听某些事件,如`LoadingRow`事件,当行加载时进行相应的颜色设定。 通过以上步骤,你可以在C#中实现改变DataGrid的行和单元格颜色。这不仅涉及到了DataGrid控件的基本用法,也...

    datagirdview 属性详解

    - `CellBeginEdit`事件可以用来在单元格开始编辑时取消编辑,根据条件动态控制单元格是否可编辑。 3. **不显示最下面的新行** 可以通过设置`AllowUserToAddRows`属性为`False`来隐藏添加新行的功能。 4. **判断...

    在DataGrid中显示并绘制柱状图

    或者,你可以根据数据值的大小动态改变颜色。 4. **响应式设计**:考虑不同屏幕尺寸和设备的适配,确保柱状图在各种环境中都能正确显示。这可能涉及到调整柱子的宽度和高度,以及对齐方式。 5. **添加交互性**:...

    C#WPF之DataGrid用法

    除了基本的数据展示和操作外,DataGrid还支持丰富的样式设计,比如改变字体、颜色、背景等。通过`Style`、`Template`等属性可以自定义DataGrid的整体外观以及单个列的样式。 #### 六、总结 通过本文的学习,我们...

    wince下 datagrid 添加控件,并隐藏了

    首先,创建DataGrid对象并设置其属性,然后动态创建Button和CheckBox对象,并将它们添加到DataGrid的行或单元格中。最后,注册事件处理程序,实现点击或状态改变时的逻辑。 8. **调试与测试**:由于WinCE环境的特殊...

Global site tag (gtag.js) - Google Analytics