vote up 1 vote down star
1
For a flex datagrid : 

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

43% accept rate

1 Answer

vote up 0 vote down
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>
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.