Telerik Forums
Reporting Forum
1 answer
92 views
Hello,

I am trying to get a hyperlink to work correctly that displays values from a databse field in the link. I can get that to work using the texbox, but then when I want to export to PDF the html is in the PDF. I'm not sure how to get this to work with the HTMLbox. I read that the latest SP has some fixes for the htmlbox and hyperlinks. Can someone from Telerik or anyone else show an example of how to correctly add a link that uses database fields in the actual link while also being able to export to PDF safely without showing the html markup?

Thanks,

Justin
Steve
Telerik team
 answered on 10 Sep 2009
1 answer
63 views
Dear Sir ,
                  this is suriya,,,, i wanna disappear the text "Generating Reports" Text loading while the report is loading ,
(Not in the report viewer).... Is there any way to disappear it ?

Please reply ASAP.....



By
Suriya Narayanan S
Steve
Telerik team
 answered on 10 Sep 2009
1 answer
357 views
Hi,

We have choosen Telerik reporting tool as our primary reporting tool for one of our project. We are facing issues with respect to the rendering time. We have few reports where the data gets from the stored procedure in 10 seconds and when we bind the same data (straight forward method) to the reporting control, its taking 45 minutes to show the report.

I would like to know if there is any other thing which we are missing... I will get the report designer file and can send you if you need it.

Now the client is asking me why can't we switch to SSRS / other reporting tools. How can we defend this question? Please let us know if any links are there to helpus out.

Regards
RK
Steve
Telerik team
 answered on 09 Sep 2009
2 answers
161 views
I just wantto sum only fields that appear on a single page and display it in the same page's pageFooter section(only the fields of the regarding page). However when i drop a textbox onto he report and say SUM(Fields.X) fo the textbox, it sums all the fields of whole report not sums only the fields of a page on per page. How can i do that? Isn't pageFooter right place to do that?
Kem Arda
Top achievements
Rank 1
 answered on 09 Sep 2009
4 answers
174 views
Hello,
I've got one question about a future use of telerik controls...
Please consider a situation for sending report as a stream and compile an xml that will be used by a third party to print the report and then send by traditional mail... I need to know if it's possible to know the exact printing number page (sometimes on the monitor I see one page but it prints 2, depending on the data)... is there a way of using it that way?

Another question, can I call the Reporting DLL to generate the pdf without seeing it on the browser / window?

Thanks in advance
Paolo
Steve
Telerik team
 answered on 08 Sep 2009
2 answers
128 views
I try to search a field "Title".

I set Title as parameter and also set Title as Filters as below:

= Trim(Fields.[Title]) = =Trim(Parameters.Title)
I try to serarch text "developer" and "Developer", it will return different result set.   Why?

I want to it bring the same result set, make the search none case sensitive. How I do this?


I set dateset casesensitive value to False (by default).

Any help will be appreciated.


PatD
Top achievements
Rank 1
 answered on 08 Sep 2009
4 answers
441 views
Hello,

I have to create a report which contains multiple subreports. These subreports are added dynamically at runtime. Everything was going ok till the render time. For some reasons the subreport which is not fit in the current page is displayed on the next page but it is not completed displayed. I understand the fact that if it cannot be displayed in the current page it is displayed on the next one but I cannot understand why it is partially displayed.

For example if a want to display the same report 10 times and on the first page we cand display only 3 of them, the forth one is displayed on the second page but with the same size. Actually the size of the first subreport + the size of free space on the first page get the normal size of the fourth report.
 

This is a code snipped for what I want to do(If you want I can send you a sample application but I can't attach files):
  Color[] srColors = new Color[]
                { Color.Red,
                Color.Orange,
                Color.Yellow,
                Color.Green,
                Color.Blue,
                Color.Indigo,
                Color.Violet } ;
            for (int i = 0; i < 27; i++)
            {
                SubReport sr = new SubReport();               
                sr.ReportSource = new ColorReport(srColors[i%7]);
                sr.Dock = DockStyle.Top;
                this.detail.Items.Add(sr);              
            }

Thanks in advance,
Steve
Telerik team
 answered on 08 Sep 2009
1 answer
367 views

I am getting the error message "An error has occured while processing htmltextbox"  when the report is rendered.  I checked and the data contains only the supported tags and I have the code in place to convert the data to lower case html tags. 
Find below a sample html mark up contained in that field.

<p>.</p><br><br><p><strong>TORQUE MAKEUP</strong><br>Witnessed Make-Up of the Following:<br><br><b>Assembly Description:</b> &nbsp; <br><b>ID Nos.: P/N:, S/O:, S/N: </b>&nbsp; <br><b>Technician and Certification: </b>&nbsp; <br><b>Licensed Thread Representative:</b> &nbsp; <br><b>Vendor:</b> &nbsp; <br><b>Equipment:</b> &nbsp; <br><b>Load Cell Calibration Date:</b> &nbsp; <br><b>Procedure: </b>&nbsp; <br><b>Thread Form:</b> &nbsp; <br><b>Dope type:</b> &nbsp; <br><b>Torque Range</b> </p>  <ul>  <li>Minimum torque: </li>  <li>Optimum torque: </li>  <li>Maximum torque: </li>  <li>Shoulder torque:</li></ul><b>Actual Values </b>&nbsp; <br><b>Actual torque: </b>&nbsp; <br><b>Actual Shoulder: </b>&nbsp; <br><b>Torque stripe: </b>&nbsp; <br><b>Results: </b>&nbsp; <br><b>Remarks: </b>&nbsp; <br><br><br /> 

What am i doing wrong. Any help would be appreciated.

Thanks,

Steve
Telerik team
 answered on 07 Sep 2009
2 answers
322 views
Hello,
i'm evaluating telerik reporting. I have made some simple report and i found telerik very simply but i cant find a way to insert the same page header and footer on different reports. With other reporting tools i create a report for the header and one for the footer. Than, on every header and footer i place a subreport and as a source of the report the header or footer. The problem with telerik reporting is that  the subreport item cannot be inserted on a header or footer so i dont know how to do that.
Any idea?

Best regards,
evald80
Top achievements
Rank 1
 answered on 07 Sep 2009
1 answer
181 views
Dear Sir ,
                i am Suriya again , i have a doubt in sum () , i wanna to display the sum of a group in the detail band, Is it possible or not ?
 If it is possible what is the syntax..    

For Exaple :

Group 1 :
1 (count --> field name)
1
1
total

Group 2 :
2
2
2
total
-------------
From above format i wanna to display as follows :
Group 1 :
3 (sum(count) --> field name)
3
3
total

Group 2 :
6
6
6
total

But now i have rendering as follows :

Group 1 :
9 (sum(count) --> field name)
9
9
total

Group 2 :
9
9
9
total

Please reply as soon as possible..

Thanking you
Suriya Narayanan S
Steve
Telerik team
 answered on 07 Sep 2009
Top users last month
Chester
Top achievements
Rank 1
Iron
Simon
Top achievements
Rank 1
Iron
Douglas
Top achievements
Rank 2
Iron
Iron
SUNIL
Top achievements
Rank 3
Iron
Iron
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?