[quote="Formisano"]Hello,
is it possible to give some rows (no alternating, e.g. each 10th) a different color? When i walk through each row with the following code i get a exception:
[c#]
foreach(Rows myRow in flygrid.Rows.Items)
{
//do something
}
Correct code:
[c#]
foreach(NodeBase node in flygrid.Rows.Items)
{
//do something
}
See the Virtual Grid sample of FlyGrid.Net Demo to see how to implement different color rows.
[quote="Formisano"]
And another question, ist a "rowspan" possible?
No. But in the next versions of FlyGrid we're planning to implement the same functionality (nested columns).