Telerik Forums
Reporting Forum
1 answer
320 views

In telerik reporting repor viwer , I have html textbox , expression displayes html content inside. How can I render or interpret of html tags of that cell content.

In SSRS we have placeholder property through that we get it doen. but in telerik I could not find anything.

Katia
Telerik team
 answered on 10 May 2016
1 answer
1.5K+ views

I have a situation where we have six different reports, where they all are basically bringing the data with the similar columns with different values.

The user want to be able to combine all of them into one, yet have each report to show up on a new page. At present the table is tied to a dataset.

My initial thought was to have one table but group it in such a way that for each different group/iteration, i would tie the table to different data source. But I don't think that it is possible from my understanding of other posts in the forum.

What is the best way for me to pull all these 6 different datasets(reports) in one report viewer control? rightnow they can run one report at a time by selecting from dropdown box which will rebind the reportviewer to the report (new data)

except for the binding of different dataset for each report, everything else is same. so it seems pointless to create different report.

Shoul i create six tables each tied to a different dataset?! Please help.

Thanks.

Katia
Telerik team
 answered on 10 May 2016
1 answer
236 views
I need to hide the space of the page header from 2nd page on wards. I applied the binding property (Image 1). It only hides the page header contents but the page header space is still there. How to hide the space. Thanks.
Current Problem(Image 2)
Stef
Telerik team
 answered on 10 May 2016
1 answer
430 views

 

 

I have a Telerik report with a graph. The graph's x-axis is a series of dates. Our client would like those dates in order from oldest to most recent. They also want the dates formatted to not include the time portion of the date. I've tried for the past day to get this to work and can't figure it out. Can someone explain how to do this?

My data query is this

SELECT AnalysisNumber
    , DateSampled
    , ViscosityAt100C
FROM tblSample
ORDER BY a.DateSampled ASC

The results show the dates in the order I want them and the dates are formatted properly.

 

AnalysisNumber   DateSampled        ViscosityAt100C
2146951               2015-12-17           13.5
2148323               2015-12-30           12.8
2149080               2016-01-11            13.9
2152284               2016-02-03            13.3
2153660               2016-02-18            13.6
2158736               2016-03-09            13.7
2158737               2016-03-16            13.8

 

But when the graph is displayed, the dates show with the time: 12/17/2015 12:00 a.m.  I've set the LabelFormat to {0:d}, but the time portion of the date still shows.  I've tried several formats there, but done seem to change it at all.

 

I tried to convert the date to a varchar and format it, but then the dates are not in the proper order.  I also tried having a text version of the date and a date version of the date in my SQL query, using the text version as the grouping and the date version as the sorting, but that resulted in not showing anything on the x-axis.

 

How do I get the dates to be formatted properly but still sorted like a date?

For a fuller explanation with screenshots, look at this: Formatting dates on graph


I have a Telerik report with a graph. The graph's x-axis is a series of dates. Our client would like those dates in order from oldest to most recent. They also want the dates formatted to not include the time portion of the date. I've tried for the past day to get this to work and can't figure it out. Can someone explain how to do this?

I have a Telerik report with a graph. The graph's x-axis is a series of dates. Our client would like those dates in order from oldest to most recent. They also want the dates formatted to not include the time portion of the date. I've tried for the past day to get this to work and can't figure it out. Can someone explain how to do this?

Ivan Hristov
Telerik team
 answered on 10 May 2016
1 answer
138 views

Hi All,

Pdf export fails when I export to an existing file that contains watermark. 

Steps to get this issue.

Say I have a document exported (formatProvider.Export(document, stream);) in to pdf and save it. Open the saved pdf file, add a water mark in the pdf and save it.

Export the document again, when it prompts for save, point it to the same pdf file that contains water mark and replace the file.It pretends likethe file is exported with the latest content but it fails. 

 On exporting if a new file name is given or pointed to the file that doesn't contain the water mark the content is exported. Could you please suggest is this is a known bug or am I missing some thing ?

Thanks

Stef
Telerik team
 answered on 09 May 2016
3 answers
419 views
Hi
I use the Report for asp .net.
It all works OK, however when I use print function from the Viewer it says "Printing: Telerik.ReportViewer.axd"
and then windows print spooler's document name is "Telerik.ReportViewer.axd.pdf"
Can I change "Telerik.ReportViewer.axd" to whatever I want in both print progress and print spooler?
Thank you.
Stef
Telerik team
 answered on 09 May 2016
3 answers
452 views

Hi to all,

actually we have a program developed with VB6 and Crystal Report 8, we're trying to import VB6 solution in VS 2008.

In parallel, we're creating a new solution with WPF FW4.0 C# in VS2015 with Telerik Reporting.

Can we convert rpt files from this solution (rpt in VS 2008) to VS 2015 with telerik report?

Stef
Telerik team
 answered on 09 May 2016
1 answer
80 views

I cannot seem to get the toggle visibility action for detail or group sections to work in the newest version. I see in the release notes that IToggleVisibilityTarget and ToggleVisibilityTargetCollection are now obsolete and deprecated. I made sure that the report I'm working on is not using those. It is using the IActionTarget. It works fine for textboxes within the same report section, but it does nothing when you try to have a detail or group section toggled. Here is a code snippet:

 

Telerik.Reporting.ToggleVisibilityAction toggleVisibilityAction1 = new Telerik.Reporting.ToggleVisibilityAction();

toggleVisibilityAction1.DisplayExpandedMark = false;
toggleVisibilityAction1.Targets.AddRange(new Telerik.Reporting.IActionTarget[] {this.detail});
this.textBox5.Action = toggleVisibilityAction1;

 

This is also isn't working for groupHeaderSection/groupFooterSection, whereas it was working fine in the previous version.

I have the detail section visibility set to false. When I click the expand option it processes the report again and the toggle mark goes from + to -, but the detail section is not visible. Is there something wrong on my end or is there a known issue?

 

Thanks

Nasko
Telerik team
 answered on 06 May 2016
2 answers
209 views

I have a table with one column filled with images from a database.

I don't know how big the images are and also the aspect ratio is unknown, so I have a custom function to resize them to a max. size to fit the page and set the Sizing mode of the PictureBox to "AutoSize".

Now I have the problem that the PictureBox inside a table cell always seems to be in Docking mode ("Fill"), so if there are multiple images, all will get stretched to the width of the largest one.

How can I prevent this?

 

You can easily reproduce it without a database, just put a table on the report and add different sized images to it, see the attached examples.

gipsy
Top achievements
Rank 1
 answered on 06 May 2016
3 answers
175 views

Hi Team,

               I am unable to filter the report content using a external combo box. Is there any way to add filters to report. I have seen the Report Book for example but unable to enable the filter toggle in the report. If there is any demo for that Please let me know.

Stef
Telerik team
 answered on 05 May 2016
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?