or
Private panelElement As MyPanelElement |
Public Sub New() |
Me.UseNewLayoutSystem = True |
Me.AutoSize = True |
End Sub |
Public ReadOnly Property PanelElement() As MyPanelElement |
Get |
Return Me.panelElement |
End Get |
End Property |
Hi,
I am currently testing the Q1 2008 gridview and I'm facing this issue :
Each time that I remove a column from the grouping panel, I loose all grouping information displayed in the row like : "Compagny : TESTABC ; "
Here's what I do :
Fist, I'm accessing data through LINQ doing something like this :
string connString = @"Data Source=SERVER;Initial Catalog=DB;Persist Security Info=True;User ID=user;Password=password"; |
context = new DomainDataContext(connString); |
//test 1 -- Binding grid view |
radGridView1.DataSource = context.Orders; |