detail

Can you toggle grouping in a Crystal Report?

Is it possible to have a report which has grouping on the underlying data but for which you can disable the grouping via a button or something on the report? Basically I want to have a "Summary Report" which is grouped, but then be able to view the detail beneath when required without having a separate report for it. ...

Silverlight MVVM header detail

So lets say i have an OrderModel and an OrderViewModel. I have the Supplier, Order Date, etc properties on both the ViewModel and the Model and they are linked up. Seen examples on this and seems straighforward enough, although somewhat duplicated in terms of writing setters/getters. Now what do I do with the OrderDetails? In my model I...

Simulate a Detail Disclosure Button press

Does anyone know of a way to simulate pressing a detail disclosure button? ...

How do I get detailed PostgreSQL-errors in Access via ODBC?

Is there a way to get the detailed error-messages PostgreSQL shows when running a query from command-line or a client like PG-Admin when using the ODBC-Interface-Driver? The Err-object in Access just tells you that something went wrong but is not very helpful - I have to run the same query again in PG-Admin to see where the problem is. ...

How to get controls on page in master detail page ?

Hi I have master page & its content page. I want to get the textboxes situated on Content page. How can i get them in C# code behind of Content page? ...

Adding a detail record in a master-detail window view

I'll preface with "Brand new to Cocoa" -- I have a master/detail page on my app: Students that may have one or several contacts (i.e. parents, relatives, etc). I have a Student entity and a Contact entity with a relationship field called "contact" in the Student entity and another relationship field called "student" in the Contact enti...

WPF Master -Detail Binding XElement

I have a XElement that has the following structure <document num="1"> <pages> <page /> <page /> </pages> </document/> I have one Listbox named "documents" that is bound to an XElement in the following manner: ItemsSource="{Binding Path=TheXElement.Elements[document]}" I want to have a second ListBox named "pages" whose Ite...

WPF Observablecollection master detail scenario

Hi, any help with this would be great. I have a model public class Master { ... public Detail[] Details {get; set;} } I am populating my view model from a WCF service which returns my collection of Master objects. I have configured the service reference to return observablecollection so I can use it easily in my view model. M...

ASP.NET How to Post a Master-Detail Views

I need to post the data from an Order-Details Page.. I have a page with fields for Order Info. Inside it is a user control for the Details Info. New rows can be added to the details info. Here are the fields: Order Customer (textbox) Order Date (textbox) Details(multiple) Description (textbox) Qty (textbox) Price (textbox) Amount (...

Getting ListView values into a string array?

I have a ListView control set up in details mode, and on a button press I would like to retrieve all column values from that row in the ListView. This is my code so far: Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click Dim items As ListView.SelectedListViewItemCollection = ...

WPF: Master - detail view with two datagrids and in MVVM

Hi, I'm trying to write a master - detail control that consists of a master datagrid and the detail datagrid. My scenario was following - I used the SelectedItem and bound it to a property in ModelView. The problem is - the SelectedItem in ViewModel is never used, so I can't get the information which item is selected in a master datagrid...

Nesting UISplitViewController within UINavigationController

I would like to have a root level controller that appears to be a splitview but I would also like to allow the detail view to essentially take over the entire screen (in both landscape and portrait orientation) - and not as a modal view. By way of context, my iPad app shows the user a list of experiments (collections of data sampled fro...

.Net Exception detail

Hi; How can one get detailed Exception thrown by the .net framework. The below log fragment shows something is wrong but what? A first chance exception of type 'System.IO.FileNotFoundException' occurred in mscorlib.dll Unfortunately I can not catch this exception so I can not debug. Is there a way to get a detailed information about s...

EF4 prevent child entity attached

We have a situation with a fairly complex entity/table hierarchy modelled with EF4. Often we like most of the associations to load (whether lazy or not) and are happy with that. Sometimes we want just the top of the hierarchy and maybe one or two of the related detail tables to be attached. For example when returning a set from a WCF ...

Which language is better suited for a programming competition: Java or C++?

Hi! I'd like to know which one is more suitable for programming contests, online judges. I don't want answers like "go with java" or "c++ is the fastest". I'd like to know that in more details, lets say like "95% of the time you wont need to write in c++, java solution will get accepted too" or "java has BigInteger object and c++ doesn...

Jasper report / Is it possible to FORCE the header, detail and the footer of a group to appear on the same page

Suppose I have the following group, with a header, a detail and a content. Group 1 HEADER Group 1 DETAIL 1 Group 1 DETAIL 2 ... Group 1 DETAIL n Group 1 FOOTER I want that HEADER, DETAIL and FOOTER are always be rendered togheter, on the same page, as they would be included in unique "unbreakable bloc" An example of what I ...