When I add a summary row to my grid it works as expected: A summary row is added as a last (visible) line in the grid which remains visible when lines are added and one scrolls the grid.
01.
Private
Sub
AddRadGridView1Summary()
02.
Me
.RadGridView1.SummaryRowsBottom.Clear()
03.
Dim
betaald
As
GridViewSummaryItem =
New
GridViewSummaryItem(
"Betaald"
,
"{0:F2}"
, GridAggregateFunction.Sum)
04.
05.
Dim
summaryRowItem
As
New
GridViewSummaryRowItem()
06.
summaryRowItem.Add(betaald)
07.
08.
Me
.RadGridView1.SummaryRowsBottom.Add(summaryRowItem)
09.
Me
.RadGridView1.MasterView.SummaryRows(0).PinPosition = PinnedRowPosition.Bottom
10.
End
Sub
However I would like to show the summary line at the "true bottom" of the grid, even when the grid contains zero (or just a few) lines as shown in the attached.
How could I achieve this?
Kind regards,
Raoul