Hi.
I bind against a ObjectDataSource that expose boolean properties that shall decide which of three versions of a particular table I display.
The detail section of the report is pretty large and this "polymorphic" table is a small part of it.
I bind the table Datasource against the "ReportItem.DataObject" property and its Visible attribute against the associated boolean.
However, these tables differ in size, and I would like to avoid the whitespace.
I could stack them on top of eachother (z order) in a panel that has "CanShrink" set to true, but this makes it hard to edit the report in the designer.
Is there any solution where:
I bind against a ObjectDataSource that expose boolean properties that shall decide which of three versions of a particular table I display.
The detail section of the report is pretty large and this "polymorphic" table is a small part of it.
I bind the table Datasource against the "ReportItem.DataObject" property and its Visible attribute against the associated boolean.
However, these tables differ in size, and I would like to avoid the whitespace.
I could stack them on top of eachother (z order) in a panel that has "CanShrink" set to true, but this makes it hard to edit the report in the designer.
Is there any solution where:
- I work with them in the designer,
- only the ones that evaluates to Visible=true will be displayed
- no white space left after the ones that evaluates to Visible=false.