This is a migrated thread and some comments may be shown as answers.

When hiding two columns in a table a white vertical line is appearing

5 Answers 121 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
John
Top achievements
Rank 1
John asked on 30 Aug 2018, 10:17 PM

I have a table in my report header (since my datasource is bound to the report). The cells in the row of the table all have conditional formatting to give the table a striping effect. The number of columns in the table will differ based on a parameter of the report. However, in the case when I have two of the columns (that are right next to each other) hide at the same time, there is a slight vertical line (maybe 1px?) that appears. Is this a known bug or am I maybe doing something wrong?

I've attached three screenshots:

1. The design mode
2. A correct rendering where the line didn't appear (and no hiding was taking place)
3. An incorrect rendering where the line is appearing (and the hiding is occurring)

I am using conditional formatting to control the visibility of these fields. They are all set to Visible = True and then the conditional formatting sets the visibility through the Layout section.

 

 

5 Answers, 1 is accepted

Sort by
0
Todor
Telerik team
answered on 04 Sep 2018, 02:09 PM
Hello John,

The issue is reproducible with the described scenario for zoom levels > 100%. It is related to pixel rounding upon rendering the Table and the specifics of the EMF image file format we use internally.
Currently we cannot offer a workaround to avoid the issue.

Regards,
Todor
Progress Telerik
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Feedback Portal and vote to affect the priority of the items
0
John
Top achievements
Rank 1
answered on 04 Sep 2018, 05:29 PM

Yeah, that's too bad, but thanks for the confirmation. I wasn't adjusting the zoom - I was just using the API to generate a PDF. I used that same approach in SSRS and it worked flawlessly there, so that's disappointing that similar functionality isn't available with Telerik Reporting.

I was, however, able to overcome this by taking a different approach. I used the binding on the header and another column to increase the width instead of hiding/unhiding extra columns.

0
Ivan Hristov
Telerik team
answered on 07 Sep 2018, 12:37 PM
Hello John, 

We're glad you managed to resolve the current issue. However, it is not recommended to change the items structure at runtime. In the current scenario I would suggest to change the report definition prior to report processing and right after report instantiation. The report parameter that determines the layout of the table should be represented by external UI element. Its value can be passed to a report constructor that would change the table structure as needed. This way the table columns will be defined before processing the report and the issue in question would not appear.

Regards,
Ivan Hristov
Progress Telerik
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Feedback Portal and vote to affect the priority of the items
0
John
Top achievements
Rank 1
answered on 07 Sep 2018, 02:27 PM
I guess I don't understand the lifecycle of the report very well. If I use a parameter to control it, it will have different behavior than the data returned from the query?
0
Ivan Hristov
Telerik team
answered on 10 Sep 2018, 11:44 AM
Hello John,

Sorry for being vague. The suggested idea was not to use a report parameter, defined in the report - this would lead to the same result that you already observe. Instead, the parameter that controls if the table should display or hide these two columns, could be passed as an argument to the report constructor. Its values can be obtained via external UI control. For example in a WinForms scenario it would look like this:
    public MainForm()
        {
            InitializeComponent();
 
            this.comboBoxShouldRemoveTableColumns.Items.Add(true);
            this.comboBoxShouldRemoveTableColumns.Items.Add(false);
            this.comboBoxShouldRemoveTableColumns.SelectedIndex = 0;
        }
 
        private void MainForm_Load(object sender, System.EventArgs e)
        {
            this.LoadReport();
        }
 
        private void comboBox1_SelectedIndexChanged(object sender, System.EventArgs e)
        {
            this.LoadReport();
        }
 
        void LoadReport()
        {
            var removeColumns = (bool)this.comboBoxShouldRemoveTableColumns.SelectedItem == true;
            var rs = new InstanceReportSource() { ReportDocument = new ReportWithTable(removeColumns) };
            this.reportViewer1.ReportSource = rs;
 
            this.reportViewer1.RefreshReport();
        }

The report constructor that accepts the boolean argument could do the necessary changes to the report definition like this:
public ReportWithTable(bool removeColumns)
    :this()
{
    if (removeColumns)
    {
        this.table1.Body.Columns.RemoveAt(1);
        this.table1.Body.Columns.RemoveAt(2);
 
        this.table1.ColumnGroups.RemoveAt(1);
        this.table1.ColumnGroups.RemoveAt(2);
 
        this.table1.Body.SetCellContent(0, 1, this.textBoxGuest1);
        this.table1.Body.SetCellContent(0, 2, this.textBoxGuest2);
        this.table1.Body.SetCellContent(0, 3, this.textBoxAmount);
    }
}

This way the report is changed right after its initialization, removing the unnecessary columns from the definition, so they won't be processed at all. Here the table columns and groups are referred by their indexes, and the sell contents are rearranged just as it is done in the report's .designer.cs file.

Hope this helps.

Regards,
Ivan Hristov
Progress Telerik
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Feedback Portal and vote to affect the priority of the items
Tags
General Discussions
Asked by
John
Top achievements
Rank 1
Answers by
Todor
Telerik team
John
Top achievements
Rank 1
Ivan Hristov
Telerik team
Share this question
or