Hello, maybe someone can help me:
I have two gridviews on my page, positioned side by side, GV1 on the left and GV2 on the right.
When the user selects a row in GV1 (that has many rows), GV2 should shift near the selected row.
I was wondering if there is something like a 'Top' property for the selected row in GV1, to set the same 'Top' value for GV2.
I guess that solution can involve Attributes.CssStyle.Keys("top"), which I can set:
gv2.Attributes.CssStyle.Add("top", [I]same_value_of_GV1_selectedrow[/I])
but first I should retrieve the "top" value of GV1.SelectedRow and I'm not able to do it.
Any help? Thank you,
Cri