티스토리 뷰
import mx.charts.series.ColumnSeries; import mx.controls.dataGridClasses.DataGridColumn; import mx.controls.DataGrid; // Creating the dataprovider var myXML:XMLList = event.result.item; // Creating the datagrid itself var myGrid:DataGrid = new DataGrid; // Setting some properties myGrid.dataProvider = myXML; myGrid.width = 320; myGrid.rowCount = myXML.length(); myGrid.rowHeight = 25; // Creating the first column var columnOne:DataGridColumn = new DataGridColumn; // Setting some properties columnOne.headerText = 'Column One'; columnOne.width = 25; // Creating the second column var columnTwo:DataGridColumn = new DataGridColumn; // Setting properties columnTwo.headerText = 'Column Two'; // New array to hold the column information var cols:Array = new Array; // Add the column information to the new array cols.push(columnOne); cols.push(columnTwo); // Apply the array to the datagrid myGrid.columns = cols; // Add the datagrid to the workspace so it will display mx.core.Application.application.addChild(myGrid); // In this case my datagrid was created inside a component, so I had to reference the parent when passing it.유용하게 쓸수 있을듯
'IT 이야기 > Flex' 카테고리의 다른 글
[Flex] 동적라인 TextArea (3) | 2010.08.03 |
---|---|
[Flex] Math 함수 사용법 (3) | 2010.03.02 |
[Flex] Flash Platform 탐구생활 (1) | 2010.02.24 |
[Flex] TextInput의 화폐단위 표시 (1) | 2010.02.23 |
[Flex] TextInput의 restrict( 글자제한 ) 프로퍼티 (2) | 2010.02.23 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- TextInput 원표시
- currencyTextInput
- flash builder
- Flex 한글 속도
- TextInput 속도
- jQuery 항목 체크
- 그룹컬럼 동적생성
- Flex
- Flex 칼럼
- Flex DataGrid
- 동해일출
- addRow
- Math 함수
- 가로를 세로로 출력
- jQuery 필수
- 팔봉제빵점
- 동적 컬럼
- 우암사적
- TextInput 화폐단위
- 아반떼 XD
- Dynamic TextArea
- Flex TextInput
- 추암일출
- 17-50VC
- 동적 TextArea
- AdvancedDataGrid 동적 컬럼생성
- Flex 4.0
- 팔봉빵집
- DB 출력
- 헤드플러싱
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
글 보관함