gTotal.Add(
New GridViewSummaryItem("Plaza", "{0} ".Trim().PadLeft(30, " "), GridAggregateFunction.First))
gTotal.Add(
New GridViewSummaryItem("Ipagoprox", "{0} ".Trim().PadLeft(30, " "), GridAggregateFunction.Sum))
Me.dgPrueba.MasterGridViewTemplate.SummaryRowGroupHeaders.Add(gTotal)
this.documentTabStrip1.TabStripElement.TabsPosition = Telerik.WinControls.UI.TabPositions.Bottom;
this.documentTabStrip1.RootElement.Children[0].Children[0].Visibility = Telerik.WinControls.ElementVisibility.Collapsed;
My problem comes then one of the tabs is dragged to another docked position by the user, is there any way for me to perform the same changes to the DocumentTabStrip that will be created?
Also will the process for adding close buttons to the tabs be the same as it was with the DockingManager?
Thanks for any help!
-Antony
grdRecords.DataSource = objRecordList; |
AlignRecordGrid(); |
int iVisibleRows = grdRecords.GridElement.RowsPerPage; |
if (grdRecords.Rows.Count > iVisibleRows) |
{ |
grdRecords.GridElement.ScrollToRow(objRecordList.Count - iVisibleRows + 3); |
//grdRecords.FirstDisplayedScrollingRowIndex = objRecordList.Count - iVisibleRows + 3; |
} |