Re: AdvancedDataGrid - preventing rollover effect onheaders?
You'd probably have to create your own headerRenderer using the ADG's
headerRenderer property. In your custom renderer, register your mouse-over
listener (might actually be roll-over if mouse-over doesn't work), and prevent
the event from propagating (I usually do an event.preventDefault() also just to
be on the safe side).
Also...make sure you add your listener with a high priority, as I believe the
hover-over color drawing is done by the grid itself, which means your listener
is likely to get added before the grid's listener, and thus fire after the
grid's listener.
|