views:

120

answers:

2

how could i remove these two colors for the header.... i could override rollover for the columns and leave the selection, but i want to remove these two effects from the header and i couldn't find a way to do that....

A: 

didn't compile because of import just add the import

import mx.core.mx_internal;

to MyDataGrid file and will work great.

Answer Link

seismael
+1  A: 

On the mx:DataGridColumn set sortable="false". This will disable the highlight rollover of the DataGrid header.

MickA