Hi, I am using silverlight xamgrid v10.3. I have a xamgrid bound to a datasource, My requirement is
to have an alternate row style for the grid and also highligt the selected row or active row.
For alternate row i created a style(as mentioned in the samples) and set the
CellStyle="{StaticResource igAltRowStyle}" RowHover="None"
of the grid. However after doing this the row highlight does not seem to be working.
Could you please let me know as to how to enable rowhighlighting for xamgrid that has an alternate
row style?
Hi Stephen,
All I need is to have a xamgrid display data with alternate row style without rowhover option.
And also when a row is slected it should be highlighted with a different color.
Meaning to say when a row is selected or navigated via keyboard it should be highlighted
with a different color.
Please let me know if you need any more information.
Hi,
I'm not 100% sure in what you're trying to do. Are you re-templating the CellControl and just changing the color of the Alternate row style?
Are you still seeing cell hovering?
Assuming you are, then all you'd need to do is set the xamGrid's RowHover property to Row
grid.RowHover = RowHoverType.Row;
<ig:XamGrid RowHover ="Row"/>
-SteveZ
Setting IsAlternateRowsEnabled="False" does not resolve the issue.
All i need to do is as per the snapshot attached. (I need alternate row colors and also rowhighlighting)
How do i do this in silverlight xamgrid?
Set IsAlternateRowsEnabled="False" for the xamgrid