Flex4 DataGrid自动显示行号
发布时间:2020-12-15 01:06:18 所属栏目:百科 来源:网络整理
导读:不用多说,帖上代码。 如下所示: private function lfRowNum(oItem:Object,iCol:int):String{var iIndex:int = _acDP.getItemIndex(oItem) + 1;return String(iIndex);} 然后在DataGrid控件中使用之. mx:DataGrid id="dgSource" dataProvider="{_acDP}" edi
不用多说,帖上代码。 如下所示: private function lfRowNum(oItem:Object,iCol:int):String { var iIndex:int = _acDP.getItemIndex(oItem) + 1; return String(iIndex); } 然后在DataGrid控件中使用之. <mx:DataGrid id="dgSource" dataProvider="{_acDP}" editable="true" > <mx:columns> <fx:Array> <mx:DataGridColumn headerText="Row#" labelFunction="lfRowNum" /> <mx:DataGridColumn headerText="Album" dataField="Album" /> <mx:DataGridColumn headerText="Artist" dataField="Artist" /> <mx:DataGridColumn headerText="Price" dataField="Price" /> </fx:Array> </mx:columns> </mx:DataGrid> </mx:VBox>解释,待续...... (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |