<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); }
更多Flex DataGrid自動編號範例相關文章請追蹤PHP中文網!