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.
...
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...
Does anyone know of a way to simulate pressing a detail disclosure button?
...
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.
...
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?
...
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...
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...
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...
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 (...
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 = ...
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...
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...
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...
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 ...
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...
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 ...