Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
333 views

Newbie to Newbie Ajax tips for ugly Invoice webpage

Some assorted pseudotips about "invoice oriented" master/detail web sites, Examples (but with small detail) and highlights: The demo at SimplyInvoices: the 5 blank items editable without a modal ...
2
votes
1answer
2k views

How to bind nested objects, or master-detail-binding, in code?

I have a three nested classes, Show, Season and Episode, where a show has seasons, and seasons has episodes. I want to bind two listboxes so that the first lists seasons, and the second lists ...
1
vote
1answer
367 views

Odd Binding behavior in WPF

I will try and explain this as concise as possible. I have 2 objects, the first which we will call object A that has an Id property and the second we will call object B, which has a ParentId property. ...
1
vote
2answers
1k views

LINQ To SQL - What is the most efficient way to loop through master/detail?

The only thing I can find when dealing with master/detail and LINQ is through databinding. However, I am using LINQ to query my data and will need to manually loop through results without the need for ...
1
vote
1answer
166 views

How to set up Header/Lines in WPF/Silverlight

Do you have any best practices for setting up Header/Lines forms (Also known as Header/Details) in WPF or Silverlight? Preferably using the Mode-View-ViewModel design Pattern to fit in with the rest ...
1
vote
1answer
384 views

The Master/Detail Behavior

I use Delphi 7 + Zeos + MySQL, and I got a problem when I try to post Master table, the Details datasets are posted first, raising a referencial integrity exception in data base, 'couse details tables ...
0
votes
1answer
111 views

Spring Roo Master/Detail & @OneToMany

In reference to Problem with @OneToMany annotation with Spring Roo, the <field:select... solution works well for create & update.jspx. Any idea how to get this to work for show.jspx?
0
votes
0answers
113 views

LinqDataSource DetailView update malfunction,but can insert and delete?

I have a Master/Detail view with 2 linqDataSource. Everything works fine except the update button on detail view doesn't work. I can select from master gridview using session,then i can insert and ...
0
votes
2answers
821 views

WPF Multiple master/details, same grid

I have a TreeView which has three levels. Lets say its a league, division and team TreeView. Now, when I select each of the items in the tree, I would like to see detailed information about it. ...
0
votes
1answer
1k views

Master Detail Databinding Winform with Detail in NEW window

There are a lot of master/detail databinding examples with detail form on the same window than the master, I can't find any example where detail is in a new window. Do you know any example in C# or ...