Ticket T152538
Visible to All Users
Duplicate

We have closed this ticket because another page addresses its subject:

Print WPF grid's custom detail

Printing WPF Master-Detail Grid with ContentDetailDescriptor instead of DataControlDetailDescriptor

created 11 years ago

Hello!  I'm implementing a Master-Detail grid and printing it via view.ShowPrintPreviewDialog.

When I set it up with a DataControlDetailDescriptor, and set AllowPrintDetails=True on the Master grid's TableView, it prints the detail grids as well, as I expected.

When I change it to a ContentDetailDescriptor, then it only prints the Master rows.  Is this by design or do I need to do something different?  I'm using a ContentDetailDescriptor because I need certain columns in the detail to be invisible based on characteristics of the Master row (and that part works great, except for printing).

Not much changes in the code:

XAML
<!-- I replace this, which works and prints details: --> <dxg:GridControl.DetailDescriptor> <dxg:DataControlDetailDescriptor ItemsSourcePath="OrderItems"> <dxg:GridControl> <!-- the rest of the detail grid's definition, including a table view with AllowPrintDetails="True" --> </dxg:GridControl> </dxg:DetailControlDetailDescriptor> </dxg:GridControl.DetailDescriptor> <!-- with this, which doesn't print details: --> <dxg:GridControl.DetailDescriptor> <dxg:ContentDetailDescriptor> <dxg:ContentDetailDescriptor.ContentTemplate> <dxg:GridControl ItemsSource="{Binding OrderItems}"> <!-- the rest of the detail grid's definition, including a table view with AllowPrintDetails="True" --> </dxg:GridControl> </dxg:ContentDetailDescriptor.ContentTemplate> </dxg:ContentDetailDescriptor> </dxg:GridControl.DetailDescriptor>

Thanks for your help!
-Scott

Answers approved by DevExpress Support

created 11 years ago (modified 11 years ago)

Hi Scott,

This functionality is not supported out-of-the-box, because ContentDetailDescriptor can contain any content you like, so there is no general way to print it. Since using the ContentDetailDescriptor  is important for you, I suggest that you customize the PrintRowTemplate template as we did in the Q507426 ticket. I have attached our sample from that thread to this answer. I am looking forward to your reply once you have had the opportunity to review the sample.
Please note that using this approach, you will need to create printed detail content manually. Here are help articles that should be helpful to you:
K18514: How to customize the DXGrid printing appearance
K18513: How to change representation of data cells via PrintCellStyle when printing/exporting grid data

    Comments (2)

      Got it.  In this case it will be faster to use XtraReports.  Thanks!

      DevExpress Support Team 11 years ago

        Indeed, XtraReports should be useful in this scenario. Please do not hesitate to contact us if you face issues when using them.

        Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

        Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.