Reputation: 2938
Currently I have this code:
<s:DefaultGridHeaderRenderer maxDisplayedLines="2" textAlign="center"/>
But it's not working, even though I have textAlign="center"
!
Thanks for any help.
Upvotes: 0
Views: 897
Reputation: 1837
Make your own <s:DefaultGridHeaderRenderer />
and add/edit below line to get center aligned header.
<s:Label id="labelDisplay"
verticalCenter="1" left="0" right="0" top="0" bottom="0"
textAlign="center"
fontWeight="bold"
verticalAlign="middle"
maxDisplayedLines="1"
showTruncationTip="true" />
Upvotes: 1