<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); }
Pour plus d'articles liés aux exemples de numérotation automatique Flex DataGrid, veuillez faire attention au site Web PHP chinois !