Home  >  Article  >  php教程  >  Flex DataGrid autonumbering example

Flex DataGrid autonumbering example

高洛峰
高洛峰Original
2016-12-27 17:16:051030browse

<mx:DataGridColumn headerText="序号" labelFunction="lfRowNum" />
//dg自动编号 
private function lfRowNum(oItem:Object,iCol:int):String 
{ 
var iIndex:int = statistidgCla.dataProvider.getItemIndex(oItem) + 1; 
return String(iIndex); 
}

For more articles related to Flex DataGrid automatic numbering examples, please pay attention to the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn