apache-flexflex-mx

Remove gridheader rollover in flex


Is there a way to remove the grid header rollover in flex while still maintaining a sortable header?


Solution

  • To remove the rollover color one trick would be to set the rolloever color to be the same as the grid header color in your style sheet or inline in your MXML:

    DataGrid {
        headerColors: #0079FF, #0079FF;     
    }
    

    Is this what you are trying to achieve?