Browse by Tags
All Tags » Master Detail (RSS)
Showing page 1 of 6 (56 total posts)
-
I have a similar problem. I need to get a selected item in Detail list, so I can have it through Data Binding.
SelectedItem returns null when I click on an Item in the Detail list.
-
I have an application that is similar to the Master/Detail sample. In it, when you open the details of an Employee, you can see the orders that he/she placed. In the company column, there is the combined Company and Contact name. How would you separate them into two columns?
Because the FieldName must be unique in a Column Collection, I can't ...
-
In my application, I have licensing requirements to remove certain columns in different licensing scenarios. The following code works great (insert into the MasterDetail code sample, MainPage.xaml.cs, at the end of the MainPage() constructor (Line 37).
this.grid.Columns.Remove(this.grid.Columns[''LastName'']);
Like I said, this code works ...
-
Hi,
I would like to know how to set the master/detail datagrid so that the rows are expanded by default .
Thanks.
Antoine
-
I'm trying to select an item in the grid (bound to master-detail data) from code.
The problem is that only selecting the top-level rows works fine.
Here's some example code:
private BindingList<ParentObject> _testItems;
public MainWindow()
{
...
-
hi,
I am trying to have one of the columns to behave as a ''link'' to a line data point chart that opens in a new window (sort of master/detail like behavior). The chart would be bound to one of the properties of the object bound to the given row. I am not sure how to proceed. The property is a KeyValuePair collection. It should ...
-
Hello,
I've observed an issue in rendering of Marster-Detail grid. Imagine you have two DetailConfiguration for the same root element. When you start the application, it will render the detail grids oddly. The critical issue is, that the first Detail grid will take all available space on the screen down from its first row. If we remove one of the ...
-
I am currently evaluating the use of Xceed datagrid. I have the following Entity and am trying to display it as a master detail table flow grid with multiple levels:
public class Entity
{ public decimal Id;
public string Name;
public Entity ParentEntity;
public ...
-
I have an entity with an ID and a self referencing ParentID (both int) and I have successfully set up a DetailGrid to display the children at the first level, but have not found a way to have that cycle repeat itself down the hierarchy as required. The examples only seem to show how to do it manually....
Any ideas?
-
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 ...
1 ...
|
|
|
|