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.Bottom10. End SubHowever 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

I'm trying to have a range of my chart. The range as a slope of y = ax+b, plus a tolerance for the width of the band.
I know that I can draw a line with 2 points, but I'm trying to achieve something like the picture attached knowing that the user will be able to change the slope and tolerance via two spineditor.
Thanks
Hello,
In the provided sample project named BugsTracker, how did the textboxes in the detailPageView bind to a selected row of that bugsGrid?
I mean, there will be corresponding detail message shown in the textboxes when I select one row of bugsGrid.
How was that done?I read the codes but I couldn't find out the entry.
thanks in advance.

Hello,
we have a problem with option AutoDetectMdiChildren. The last created windows is not the active window, but the first
We can not use the radDock.ActiveDocument property, because the forms are not a DockWindow, it's a normal System.Windows.Forms.Form.
It is posible to set the last window as aktive window?
namespace TelerikWinFormsApp1{ public partial class RadForm2 : Telerik.WinControls.UI.RadForm { public RadForm2() { InitializeComponent(); this.IsMdiContainer = true; this.radDock1.AutoDetectMdiChildren = true; Form1 frm = new Form1(); // this frm is aktive frm.MdiParent = this; frm.Text = "Child 1"; frm.Show(); frm = new Form1(); frm.MdiParent = this; frm.Text = "Child 2"; frm.Show(); frm = new Form1(); // this form should be active frm.MdiParent = this; frm.Text = "Child 3"; frm.Show(); } }}


Hi,
Is there any way to display the total number of rows contained in the data source within the paging panel? Please refer to the image attached for clues.