Programming/Flex

DataGrid header만 가운데 정렬하기

다엄 2010. 2. 9. 10:04

출처 : http://butterfliesandbugs.wordpress.com/2007/08/10/datagrid-headerstyle-doesnt-override-column-styles/


<mx:Style>
       
.headerCustomStyle
        {
              fontWeight : 'bold';
              textAlign : 'center';
              color  : #0000FF;
        }
</mx:Style>

<mx:DataGrid headerStyleName="headerCustomStyle">


이렇게 해주면 된다.
간단하군 -ㅅ-