Telerik Forums
Reporting Forum
1 answer
72 views
On our GUI screens we use the Telerik.Windows.Controls.RadGridView control. It is possible to sort, filter and group by the data.
To print this filtered, sorted and group by list what to do?
Through the object data source we now can print a list but this without any knowledge of the actual selections from the grid.
Please advice here.
Steve
Telerik team
 answered on 09 Oct 2012
1 answer
211 views
Hi friends,

I have several questions for multiple value parameters
  1. What if I want to hard code the values ? for Example Labels may read "Label 1" , "Label 2" , "Label 3" , "Label 4" But the values would be 1,2,3 and 4 res. Below is what I tried.
    //Report1.Designer.cs : Designer Code behind (to display the report parameter setup that I have)
                reportParameter2.AllowBlank = false;
                reportParameter2.AutoRefresh = true;
                reportParameter2.MultiValue = true;
                reportParameter2.Name = "Parameter2";
                reportParameter2.Text = "Checkbox List";
                reportParameter2.Type = Telerik.Reporting.ReportParameterType.Integer;
                reportParameter2.Visible = true;
                this.ReportParameters.Add(reportParameter1);
                this.ReportParameters.Add(reportParameter2);
     
    // Default.aspx.cs
        public partial class _Default : System.Web.UI.Page
        {
            protected void Page_Load(object sender, EventArgs e)
            {
                var report = new WebApplication1.Report1();
                int[] CheckBoxList = { 0, 1 };
                report.ReportParameters["Parameter2"].MultiValue = true;
                report.ReportParameters["Parameter2"].Value = CheckBoxList;
                //report.ReportParameters[1].Value = Gender;
                ReportViewer1.Report = report;
                ReportViewer1.RefreshReport();
            }
        }
  2. I can not see the check-boxes with the above scenario ?
  3.  Is there any way so that I can implement the radio button group.As we do doe gender, for example ?
Aarsh
Top achievements
Rank 1
 answered on 09 Oct 2012
5 answers
274 views
Hello,

I have a dynamic report that automatically generates columns and rows on a table based on a dynamic datasource. But the problem comes in with hundreds of records - these records are all shown in one page. And the UI lags when trying to scroll down. In the Silverlight Report Viewer, there is a paging control but I couldn't figure out how to make this work. Please advise. Thanks!
Steve
Telerik team
 answered on 09 Oct 2012
7 answers
348 views
We are giving serious thoughts for shifting to Telerik reports.

So friends please guide us get started.

I would like to know / if...

  • Data Dynamics to Telerik Report Conversion utility is available
  • Subreports are supported
  • Export to Word, Excel , PDF and HTML
  • Access to report life cycle just like asp.net page life cycle
  • The degree of customization allowed for the Telerik reports if required
  • Ifwe can set the date sets, data sources, parameter values programatically
  • Does it support SQL reports ? (figures crossed)
  • We can have subreports as a table row (please see the attached PNG file for clarification. Customer Order History and Customer
  • Product History are the subreports. We are using this scenario basically.)

FYI: The report gets flourished by the stored procedure hence the end user needs to pass some parameters to the report, which in turn will be passed to stored procedure.
The parameter should support default values (programatically and manually), validation. Check-box list and date selector are heavily used parameters in our reports.

Thank you,
-Aarsh
IvanY
Telerik team
 answered on 09 Oct 2012
1 answer
165 views
I want to programmatically access the fields collection in the ObjectDataSource object in either the OnItemDataBound or OnItemDataBinding event of the Telerik report to hide report elements if they do not contain values.

How would I accomplish this in the code file of the Telerik report?
Elian
Telerik team
 answered on 09 Oct 2012
1 answer
158 views
My report is working fine when I run via vs 2010. However when I deploy to the production environment I get the following error "An error has occurred while processing Report '': Object reference not set to an instance of an object.
The ReportViewer controler seems to be working just fine as the above mentioned error is displayed in the controller.
Do I need to specifically deploy the report?

Thanks,

MTmace
Steve
Telerik team
 answered on 09 Oct 2012
1 answer
59 views
I have tried visually and in code.
Why doesn't this work?   thx

    this.tableELECTRIC.DataSource = sqlData;

            this.chartELECTRIC.PlotArea.XAxis.AxisLabel.TextBlock.Text = "Month";
            this.chartELECTRIC.PlotArea.XAxis.AxisLabel.TextBlock.Appearance.TextProperties.Color = System.Drawing.Color.Navy;
            this.chartELECTRIC.PlotArea.XAxis.Appearance.Width = 3;


            this.chartELECTRIC.PlotArea.YAxis.AxisLabel.TextBlock.Text = "KWH";
            this.chartELECTRIC.PlotArea.YAxis.AxisLabel.TextBlock.Appearance.TextProperties.Color = System.Drawing.Color.Navy;
            this.chartELECTRIC.PlotArea.YAxis.Appearance.Width = 3;
Hadib Ahmabi
Top achievements
Rank 1
 answered on 09 Oct 2012
0 answers
106 views
Has anyone had any experience in rendering a report in a format that can easily be used in the body of an email?  I am attempting to write a process that will generate a custom summary report for various users that would be emailed using System.Net.Mail.  But, I have not found an elegant solution. 
I have tried to export to MHTML but that does not seem to work with System.Net.Mail.  I have also tried to export to HTML but that seems to create multiple files and would take a lot of additional work to merge everything together.
Any ideas would be appreciated.
Robert Schoen
Top achievements
Rank 1
 asked on 08 Oct 2012
5 answers
275 views

I using multi-column in telerik reporting but result not same as my imaging.
I have 1 group (group by username) 
This is result form multi-column reports

Mary Jane              4          2.4         9          2.5
No.       KG.            5          2.6              
1          2.5             6          2.5        
2          2.8             7          2.3         
3          2.3             8          2.7       

But I want report look like this.

Mary Jane
No.       KG.            No.       KG.        No.       KG.        
1          2.5             4          2.4         7          2.3
2          2.8             5          2.6         8          2.7
3          2.3             6          2.5         9          2.5

What should I do?
Steve
Telerik team
 answered on 08 Oct 2012
2 answers
188 views
This sounds so simple, but being relatively new to all this I don't see what I'm doing wrong.

I have several checkboxes on a cover page of my report.  I have the checks appearing just fine, but when I set the FalseValue property, and try and run, I get a big red box of error where the checkbox should be saying: An error has occurred while processing CheckBox 'chkPriorAppr': Invalid image data.
----------------Inner Exception--------------------
Invalid image data
----------------Inner Exception-------------------
Access to the path 'C:\Projects\.......  is denied

All I want to do is remove the showing InderterminateImage when the value is N, and instead show the UnCheckedImage.  The checks show fine btw.
Rich
Top achievements
Rank 1
 answered on 08 Oct 2012
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?