Telerik Forums
Reporting Forum
1 answer
116 views
I am trying to add some styling to a crosstab in my report.  I have added different colors to different sections of the report.  When I view the report in the designer preview, the colors show up fine.  When I run the project though, I am not accurately seeing all of my changes.  When I export to PDF though, I can see all of the changes there.

A second part to this questions, is that I have removed the borders for every cell in the crosstab.  No matter what I change though, I still get lines around every cell in the pdf export.

Any help would be appreciated. Thanks.
Steve
Telerik team
 answered on 28 Oct 2010
1 answer
126 views
Hi,

Is it possible in a report to have a vertical logo in the left margin ?, how would I do that ?.

Best

Ole.
Steve
Telerik team
 answered on 28 Oct 2010
4 answers
289 views
Hi,

I have bought Telerik_Reporting_Q2_2010_v4_1_10_9x  today.
I had developed the application using Telerik_Reporting_Q2_2010_v4_1_10_7x trial version using a patch from the forum and the subreports with horizontal &vertical lines were working

But the same code is not working with 9x version.
I am attaching the screenshot of how its looking.

Please help us with some sort of patch to fix the problem.

Regards,
Suman.
Steve
Telerik team
 answered on 28 Oct 2010
5 answers
308 views
Is it possible to use a pre-made form as the background / basis for a report in Telerik Reporting?

In other words, I have a PDF form on which I'd like to drop data fields.  is it possible to load or import the form into the report writer and then drop fields on it per normal?  I can think of the "stretching" limitation, but I'm curious if the report could not stretch the page, but spawn to new ones as the data were merged in some way.

Thanks!
Steve
Telerik team
 answered on 28 Oct 2010
1 answer
108 views
Does anyone know of any way to exclude certain columns only from CSV when exporting reports to CSV? I have columns to display the sum of some numbers on other formats but i dont want them in the CSV
Steve
Telerik team
 answered on 28 Oct 2010
4 answers
397 views
With the new Q2 release Telerik Reports hyperlinks are now supported,
and I am trying to enable interactive sorting without tables. Table
performance seems very slow or even hangs  when using table grouping.

With the fields in the detail section directly, and  using the NeedDataSource, or ItemDataBinding(for the report details section)  event I can grab my report params but in these events the sorting methods don't work. "Telerik.Reporting.Data.SortDirection.Asc"

The sorting does work under InitializeComponet() but
I can't get the params or at least don't know how at that stage of
report rendering. .

I am designing the reports in a class library  

Thanks

Telerik.Reporting.Processing.Report report = (Telerik.Reporting.Processing.Report)sender;
 
           if ((string)report.Parameters["SortDir"].Value == "Asc")
           {
 
               this.Sorting.Add(new Sorting("firstname", Telerik.Reporting.Data.SortDirection.Asc));
               
                
           }

private void Report3_NeedDataSource(object sender, EventArgs e)
        {

            Telerik.Reporting.Processing.Report report = (Telerik.Reporting.Processing.Report)sender;

            if ((string)report.Parameters["SortDir"].Value == "Asc")
            {

                this.Sorting.Add(new Sorting("firstname", Telerik.Reporting.Data.SortDirection.Asc));
                report.DataSource = this.sqlDataSource1;
                
            }
            //
            // TODO: Add any constructor code after InitializeComponent call
            //
        }




private void Report3_NeedDataSource(object sender, EventArgs e)
        {

            Telerik.Reporting.Processing.Report report = (Telerik.Reporting.Processing.Report)sender;

            if ((string)report.Parameters["SortDir"].Value == "Asc")
            {

                this.Sorting.Add(new Sorting("firstname", Telerik.Reporting.Data.SortDirection.Asc));
                report.DataSource = this.sqlDataSource1;
                
            }
            //
            // TODO: Add any constructor code after InitializeComponent call
            //
       
private void Report3_NeedDataSource(object sender, EventArgs e)
        {

             report.DataSource = this.sqlDataSource1;
                
            }
            //
            // TODO: Add any constructor code after InitializeComponent call
            //
        }
private void Report3_NeedDataSource(object sender, EventArgs e)
        {

            Telerik.Reporting.Processing.Report report = (Telerik.Reporting.Processing.Report)sender;

            if ((string)report.Parameters["SortDir"].Value == "Asc")
            {

                this.Sorting.Add(new Sorting("firstname", Telerik.Reporting.Data.SortDirection.Asc));
                report.DataSource = this.sqlDataSource1;
                
            }
            //
            // TODO: Add any constructor code after InitializeComponent call
            //
       {

            Telerik.Reporting.Processing.Report report = (Telerik.Reporting.Processing.Report)sender;

            if ((string)report.Parameters["SortDir"].Value == "Asc")
            {

                this.Sorting.Add(new Sorting("firstname", Telerik.Reporting.Data.SortDirection.Asc));
                report.DataSource = this.sqlDataSource1;
                
            }
            //
            // TODO: Add any constructor code after InitializeComponent call
            //
        }
private void Report3_NeedDataSource(object sender, EventArgs e)
        {

            Telerik.Reporting.Processing.Report report = (Telerik.Reporting.Processing.Report)sender;

            if ((string)report.Parameters["SortDir"].Value == "Asc")
            {

                this.Sorting.Add(new Sorting("firstname", Telerik.Reporting.Data.SortDirection.Asc));
                report.DataSource = this.sqlDataSource1;
                
            }
            //
            // TODO: Add any constructor code after InitializeComponent call
            //
        }
Steve
Telerik team
 answered on 28 Oct 2010
2 answers
103 views
I'm starting with the trial for reporting and Web toolkits using VS2010, 4.0 framework.  I have a web application with a report viewer that is consuming reports defined on a separate dll library.  In one report I have a field (textbox) that has what I want to be "active"content - meaning I want the user to click that textbox and have it navigate to another report serving much like a drill down.  This I have been able to accomplish.

Additionally, I am trying to maintain a set of navigation hyperlinks outside the report/report viewer that can also serve a similar report navigation purpose.  These hyperlinks would instruct the report viewer to change its report source, parameters, etc.  The key here is that I am creating an alternative to a document map - its just a business requirement.

How would I know when the user has clicked on the report field, thus triggering the navigation action?  I need to know this because I need to update the hyperlinks to reflect the new report "context".  I'm a bit dumbfounded by the lack of useful events in the report control hierarchy.  The report viewer appears to be blissfully ignorant of important actions like the one described above...  is this true or am I just missing something obvious?

Thanks in advance,
Ed
Peter
Telerik team
 answered on 27 Oct 2010
1 answer
101 views
I have a stored procedure that builds a temp table within itself and returns its results. however when i add the sqldatasource to a report via the wizard i get results when i execute it. but no data fields show up. and it does not allow me to continue the wizard as far as designing the report with theme etc. it stops at the selected datasource.
any ideas on how i can rememdy this?

Joshua
Joshua Gates
Top achievements
Rank 1
 answered on 26 Oct 2010
1 answer
196 views
Hi there

I have a problem when setting text wrap to False for a text box on a report. When viewing the report, it seems to work fine (i.e. the text is truncated at the point where the text box end.)

When printing to PDF or printer, the text in essence still wraps, but because the wrap is set to False, the box does't grow and it seems to just 'throw away' the last bit of the text after a space. 

I need it to print in the way the report viewer displays it - truncated.

I have seen a few older posts regarding this problem but I couldn't find that it was resolved.

The version of the software that we currently use is 'Telerik_Reporting_Q2_2010_v4_1_10_714_dev'.

For this text box, I have set TextWrap, Multiline and CanGrow all to false.

Kind regards

Steve
Telerik team
 answered on 26 Oct 2010
2 answers
112 views
Hi,my problem is that I have to use more than one stored procedures for different parts of my report.
For example if I have three parts in the report I have to use three stored procedures which provide the data.
Arash
Top achievements
Rank 1
 answered on 26 Oct 2010
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?