All my details tables are expanded by default. I'd like to set the background color of every detail row to match the background color of its respective parent row. I assume it would be something along these lines:
Sub RadGrid1_ItemCreated(...)
if itemcreated is a detail row
determine if parent row is item or alternatingitem
set detail row's background style to match item/alternating style
end if
End Sub
Is this possible? If so, could you please provide a sample code?
Thanks!