2009-08-04 6 views
1
 
For a flex datagrid : 

How do I have different fonts for a column header 
and the text in the corresponding cells? 

Antwort

0
Here is one workaround : 


<mx:DataGridColumn headerText="colHeader" dataField="marHD" width="100" editable="false" fontFamily="Arial" rendererIsEditor="true" editorDataField="text"> 
     <mx:itemRenderer> 
      <mx:Component> 
        <mx:Text fontFamily="myfontfamily"/> 
      </mx:Component> 
      </mx:itemRenderer> 
    </mx:DataGridColumn> 
Verwandte Themen