master-detail

What is the latest greatest way to move data between controls/queries and presentation elements

I have several combobox choices which a user can select from on a WPF window. Each of those compbo boxes are bound to different tables through EDMX. The combos do not bind to eachother. I'm looking for a master/detail functionality. When a user selects anyone of the combobox selections(master) a query results(details) built from the sel...

Quick way to create a Master Detail Database viewer

I have a customer that wants to see some data. I can just sent it to him in an excel file, but the data is master/detail data and it would be nice to send it to him in a tree like form. Is there an really easy way to put data into some sort of free master detail viewer like that? Or to code one one Quick in C# and visual studio 2008 o...

select the first three details of a master-detail relationship in a view

I have a master detail relationship between a person and its friends: person id name -- ------ 1 Jones 2 Smith 3 Norris friends id personId friendName -- -------- ---------- 1 1 Alice 2 1 Bob 3 1 Charly 4 1 Deirdre 5 2 Elenor A person can have as many friends as he wants. I want to create...

Interface Builder Master/Detail bindings for Core Data

I have been working on a master/detail core data program for a while now and have a good start. I'm stumped when it comes to the correct binding for the detail array controller. It seems that I have tried every combination of managed context with content array binding or managed context with content set binding. I have one array contr...

what's a good way to show temporary details in a screen, that later is gonna be used for updating a masters/details tables

I have a master/detail tables and I need to show in a screen a set of detail data which has exactly the same structure than the details table, so later I can save the temporary details data to the real physical details table. What's a good way to do this in .NET without LinQ? (since Im not familiar with LinQtoSql) ...

ASP.NET MVC 2 : Having trouble with creating a Master-Detail View

Hi everyone ! I'm having trouble right now with the creation of a Master-Detail page in an ASP.NET MVC 2 project at the moment. This project uses Entity Framework OR/M for table mapping. I'm using a custom CategoryModel which is passing another list of objects. I've simplified the Model for presentation purposes : public class Cat...

How do I access the detail data (master detail relationship) from a fetch request in a core data document?

Hello, I am very new at using Xcode and I have worked my way through most of the code necessary for my program. I have a fetch request that is returning this: 2010-10-04 15:48:01.341 lzshow7.2[7001:10b] 004 Commando March 2010-10-04 15:48:01.352 lzshow7.2[7001:10b] <NSManagedObject: 0x29e370> (entity: Song; id: 0x2ab990 <x-coredata:/...

ASP.Net master/detail w/Databinding to DataSource objects - multi-insert with all-or-nothing principals

My goal is to allow the user to enter order header and detail data and have it all save with a single button click, in one transaction so the save is all or nothing. For example: Tables: OrderHeader: Id, CustomerId, Comments, OrderDate, OrderLine Id, OrderId FK => OrderHeader Produ...

Do a Master-Detail scenario with a DataGrid and TextBox`s beside, how to bind to multiple selections?

My user can Select multiple Orders in a OrderDataGrid from a selected customer. When the user selected the OrderId + Ordername in the DataGrid all Order details must be filled in the TextBoxes righthand of the Order datagrid. The problem I have is how can I bind always to the first element of the selected orders? At the moment the Text...

Display Multiple Choice Question on Web Form in Asp.net

In my project I have a web service that returns an Exam object. This object contains a property that returns set of multiple choice questions in Questions[] array. Each Question object in Questions array contains two properties, Question and ChoiceArray. To clear things here's the code, Exam e = service.GetExam(long CenterID); Question...

How to export Master/Detail data to Excel?

How can export Master/Detail data to Excel in C#? I wont to have some think like these without the dropdownlist: http://blogs.msdn.com/blogfiles/excel/WindowsLiveWriter/CreatingaMasterDetailViewinExcel_12A09/image_thumb_5.png How these can be done??? ...

Master Detail SPDataSource

if i have a Repeater bound to a SPDataSource and within the repeaters template another Repeater and SPDataSource. How do I pass a parameter from the outer SPDataSource to the inner? <div class="menu-container"> <sharepoint:spdatasource id="SPDataSourceCategories" runat="server" datasourcemode="List" useinternalname="true" ...