I have a DataGrid that needs to show a gradient background on mouseover of the row. I have created itemrenderers for each of the columns and the gradient shows up for the individual cell that is moused over, but not for the whole row. How do I get the whole row to show the gradient when mousing over one of the cells?
Share
You have subclass the
DataGridand delve into theListBaseand override theprotected function drawRowHighlightIndicator(). You’ll be using the graphics class to draw what you need, so bone up on how to do that.