Ticket S133843
Visible to All Users
Duplicate

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

Only 1 Row Shown in Report

only first detail row is showing

created 15 years ago

Hi guys!
After upgrading from v2009 vol2 to vol3 one of my reports stopped working. It only showed the first detail row of any given datatable.
During the design of the report I used a DataSet and a DataAdapter but during runtime I use a simple DataTable that I bind using the datasource property of the report. With vol 3 that didn't work any more, no error message, nothing. Only one detail row is produced.
The solution was/is to set the DataAdapter to null and the DataMember to "", then everything works again.
(Why is only on row produced, seems to me it should be none or all rows?)
Proposed Solution:
[C#]
XtraReport1 report = new XtraReport1();
report.DataMember = "InvalidDataMember";
report.DataSource =ds ;
report.DataMember = "ValidDataMember";
report.FillDataSource();
or
[C#]
traReport1 report = new XtraReport1();
report.DataMember = "InvalidDataMember";

report.DataMember = "";
report.DataSource =ds ;
report.DataMember = "ValidDataMember";

Show previous comments (1)
DevExpress Support Team 15 years ago

    Hi Adam,
    This problem was caused by the "auto select" behavior in previous versions of the suite.
    In previous versions, when the XtraReport.DataSource gets set at runtime, DataMember validation process appears and if it was unsuccessful, the DataMember will be set to FIRST table name.
    This behavior may cause lots of issues if the order of DataTables in the DataSet is changed.
    So, we decided to modify this behavior in newer versions of the suite: Currently, when setting XtraReport.DataSource property and the DataMember is valid, everything should work as expected, otherwise a DataMember will be cleared.
    And you need to set it afterwards. However, we can't raise an exception in this case since it may break the working functionality for other customers, in case if DataMember property is set after the DataSource, which is a valid scenario at present.
    For example :

    C#
    XtraReport1 report = new XtraReport1(); report.DataMember = "InvalidDataMember"; report.DataSource =ds ; //Exception is raised report.DataMember = "ValidDataMember";

    Thanks,
    Andrew

      I'm sorry if you feel that I press on here, but obviously you've introduced one breaking change already.
      Now what you describe is invalid in charts. By going about things like you have now, you leave the door wide open for arbitrary errors that will be hard to troubleshoot for the end user. I mean seriously, 1(?!) detail row and then nothing… :-)
      In the charts you need to first nullify erroneous references before you bind to/fill the data. (Alternatively raise an exception at binding to a report viewer.)
      Charts and reports are quite similar products, and I really feel that charts solved this better with a clear error message.
      I do love working with your components, and thats why I feel it's important that you keep them stringent av robust.
      Best regards
      Adam Nerell

      DevExpress Support Team 15 years ago

        Hi Adam,
        Thank you for the feedback.
        Yes, we've made a breaking change due to a bug fix(Page Builder - Incorrect data is shown in the first detail record when sorting is enabled for a DetailReportBand).However, we believe that our previous behavior with auto-selecting of the first datatable, if the specified DataMember wasn't found, was incorrect.
        I've contacted our R&D team regarding the idea of raising an exception, but I should mention that it's impossible in this case since a DataMember may be supplied after the DataSource, and this exception will introduce a new breaking change.
        Thanks,
        Andrew

        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.