Hey, I am trying to have a row that represents the totals of the grid. This row will sit at the top of the grid and can be hidden at any time by the user.
For some reason I can hide the row, but I can’t make it come back…I am simply updating the row’s visible property, but it never comes back. Any ideas?
Here is the simple code I have to hide/show the row.
Public Shared Sub ShowAccountTotals(ByVal grid As GridControl, ByVal show As Boolean)
Dim totalRow As DataRow = grid.DataRows(0)
totalRow.Visible = show
totalRow.EndEdit()
End Sub
Imported from legacy forums. Posted by flyingpenguin (had 2380 views)