01
Feb
08

Disabling item roll over highlighting in the Flex DataGrid control

Similar to the previous example, “Preventing a user from selecting an item in a Flex DataGrid control”, the following example shows how you can disable the item roll over highlight in the DataGrid control in Flex by setting the useRollOver style.

Full code after the jump.

View MXML

<?xml version="1.0" encoding="utf-8"?>
<!-- http://blog.flexexamples.com/2008/02/01/disabling-item-roll-over-highlighting-in-the-flex-datagrid-control/ -->
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
        layout="vertical"
        verticalAlign="middle"
        backgroundColor="white">

    <mx:Script>
        <![CDATA[
            import mx.events.ListEvent;
            import mx.controls.Alert;

            private function dataGrid_change(evt:ListEvent):void {
                Alert.show(evt.itemRenderer.data.label, evt.type);
            }
        ]]>
    </mx:Script>

    <mx:Array id="arr">
        <mx:Object label="Alert" />
        <mx:Object label="Button" />
        <mx:Object label="ButtonBar" />
        <mx:Object label="CheckBox" />
        <mx:Object label="ColorPicker" />
        <mx:Object label="ComboBox" />
    </mx:Array>

    <mx:ApplicationControlBar dock="true">
        <mx:CheckBox id="checkBox"
                label="useRollOver:"
                labelPlacement="left"
                selected="true" />
    </mx:ApplicationControlBar>

    <mx:DataGrid id="dataGrid"
            dataProvider="{arr}"
            useRollOver="{checkBox.selected}"
            rowCount="4"
            width="200"
            change="dataGrid_change(event);">
        <mx:columns>
            <mx:DataGridColumn dataField="label" />
        </mx:columns>
    </mx:DataGrid>

</mx:Application>

View source is enabled in the following example.

As you can see, when the useRollOver style is set to false, the item row highlight is not drawn when moving your mouse over an item in the DataGrid, but the background color is drawn if you select an item. If the useRollOver style is set to true, the item row highlight is drawn when hovering over a list item.

Since useRollOver is a style, you can also set it in an external .CSS file, or in an <mx:Style /> block, as shown in the following snippet:

<mx:Style>
    DataGrid {
        useRollOver: false;
    }
</mx:Style>

Or, you can set the useRollOver style in ActionScript, as seen in the following snippet:

<mx:Script>
    <![CDATA[
        private function init():void {
            dataGrid.setStyle("useRollOver", false);
        }
    ]]>
</mx:Script>

4 Responses to “Disabling item roll over highlighting in the Flex DataGrid control”


  1. 1 EvanK Feb 11th, 2008 at 11:39 am

    I know Flash AS3 controls are not exactly the same as Flex AS3 controls, but could this same effect be achieved on a Flash DataGrid, even though they do not have a ‘useRollOver’ property?

  2. 2 Atom Feb 21st, 2008 at 11:02 am

    Yep, you are correct Evan. At least, it seems to work for me…

  3. 3 Anthony Ettinger Mar 13th, 2008 at 3:50 pm

    I found that I’m unable to disable RollOver colors for the datagrid header.

    I tried “useRollOver: false;” in the headerStyleName definition, but it seems to ignore it (as in your example here as well).

    I find I’d rather disable rollover for the header, rather than the rows…those I do want rollovers.

  4. 4 Mai Ta Sep 23rd, 2008 at 8:13 pm

    hi all!
    I have problem in the same “Anthony Ettinger” but i want to change rollover color for header. I don’t want the header has rollover color like on rows.
    But i don’t find any properties support this problem.
    If you have any solving for it, please help me! Thanks for reading my problem!

Leave a Reply

This blog is terrible at eating HTML tags. If you plan on posting code/XML, please escape your "<" characters as "&lt;" and your ">" characters as "&gt;".