Browse by Tags
All Tags » Master Detail » MasterDetail (RSS)
-
Hi,
I am trying to create a grid with recursive details and it works when I set AutoCreateDetailDescriptions to true just fine. However, my problem is that I also need unbound columns on each level. I know it can be achieved by creating the detailconfigurations manualy in the code behind but it seems like a bad improvisation. Is there anyway to ...
-
Hi,
I have Master Detail grid. Requirement is to show data in a combo box in Detail Grid column.
How do I add combo box? Any samples?
Below is my code -
DataGridCollectionView theView = new DataGridCollectionView(roomsListNew, typeof(ExchangeRoomResource), false, false);
theView.DetailDescriptions.Add(new ...
-
Thanks for your reply.
Your workaround gave me an idea that is currently working. It seemed to me that a new ''DataGridDetailDescription'' is created for each parent row, as opposed to using this object in a static way (no static methods). So, I created my own workaround by changing my implementation of the DataGridDescription class ...
-
I had already implemented a DataGridDetailDescription. It is working in the sense that I can expand any parent row and the child objects are displayed in child rows in a subgrid. See the code below: (modified slightly to rename the names of my variables)
class ParentDetail : ...
-
I'm not sure how this post helped Henry, as it is not working for me.
I've got the same exact problem. I need to access the parent object when the InsertionRow is used, in order to properly the new child object. The parent object is absolutely essential to properly creating the child object.
I created the above event ...
-
Could you please post a code sample of this? I can't make any sense of what objects you are talking about.
I've read all of the posts on this forum filed under the Master/Detail tag, and have yet to be able to find a solution to my problem.
The problem is that I have a working Master/Detail grid set up and running. When a new ...
-
Hi, I've got a master detail grid and I've hooked in to the SelectedItem property changed even as follows.
DependencyPropertyDescriptor SelectedAdvertChangedDescriptor = DependencyPropertyDescriptor.FromProperty(DataGridControl.SelectedItemProperty, typeof(DataGridControl));
SelectedAdvertChangedDescriptor.AddValueChanged(dgAdverts, new ...
-
I'm trying to create a master / detail grid with a strongy typed dataset. The dataset contains two tables and the relationship between them. The xaml for the grid is.......
<xcdg:DataGridControl Grid.Row=''1'' AutoCreateColumns=''False'' Name=''dgAdverts'' ReadOnly=''True'' SelectionMode=''Single'' EditTriggers=''None'' ...
-
I TableView with Master/Detail in its basic form running successfully, but I am running into an issue with retaining expanded master records. I have DataControlGrid with a DataGridCollectionViewSource that uses a DataTable as its source. I wanted to be able to keep a master record expanded on refresh if the record had been expanded and ...
-
I am trying to see if I can replicate the following behavior. DevExpress winforms grid has 'tabs' for their detail views. Xceed's grid has detail views as well, but they are rendered generally as peer rows, stacked over each other. Is there a way to change how the detail section's container is rendered? In stead of stacking them, put them into ...
|
|
|
|