Hi,
I have been trying to style the summary row in advancedDataGrid using
the styleFunction method of advancedDataGrid.I have been able to style
the summary row a bit using the following code but i have not been
able to highlight(show it in different colour) the row :
public function summaryStyle
(data:Object,col:AdvancedDataGridColumn):Object
{
var output:Object;
if ( data.children != null )
{
output = {color:0x081EA6, fontWeight:"bold", fontSize:14} ;
}
return output;
}
I tried setting properties like backGroundColour etc. but they don't
seem to work.Can some one please guide me how can this be achieved
using styleFunction?
Thanks,
Shishir.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Flex
India Community" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/flex_india?hl=en
-~----------~----~----~----~------~----~------~--~---