How do I set up conditional formatting on a watermark?
I only want the watermark to display when a field value = "Official" (This will place a "Official Copy" watermark on the report. )
The report is ignoring the conditional formatting rule and inserting the watermark.

Is it possible to embed custom widgets in my reports in html view ?
For instance I have many html kendo charts and grids created externally from telerik reporting and would like to include them in my reports in html view.
Something similar to a iframe that includes my custom widget logic.
Thanks
Nick

In a report book in html viewer is it possible to apply page transitions when moving from one page to another for powerpoint style presentations ?
Thanks.
Nick.

Hello,
for a report a like to have a dropdown box with values to choose from.
According to examples I put the following code in the constructor:
ReportParameters["Agent"].AvailableValues.DataSource = new object[];
ReportParameters["Agent"].AvailableValues.ValueMember = "Fields.Item";
ReportParameters["Agent"].Visible = true;
ReportParameters["Agent"].Type = ReportParameterType.String;
When I compile it shows the report with a textbox on top.
Now when I change the code to:
ReportParameters["Agent"].AvailableValues.DataSource = new object[] {"test"};
ReportParameters["Agent"].AvailableValues.ValueMember = "Fields.Item";
ReportParameters["Agent"].Visible = true;
ReportParameters["Agent"].Type = ReportParameterType.String;
and I try to open the report it says:
Object reference not set to an instance of an object.
Source: Telerik.ReportViewer.Wpf.
I use Telerik Reporting Q2 2015.
I've loooke dover everuthing but I guess still mssing something.
Andy direction would be appreciated.
Kind regards
Jeroen
continue this thread:Is there any way to export reporting as JPEG?
I create a sample project that will occour the same exception.
(Admin: The link is removed due to violation of Telerik Reporting License agreement for DEV assemblies distribution. Please, use the support ticketing system to submit demo projects.)
Thanks.
Hello all!
I've got a class tied to a report that I'm building, and 3 of the properties are City, State, and Zip. Zip is not currently sent over with a dash, just the 5-9 numbers.
I want to format zips on my report longer than 5 characters as "99999-9999", and Zips that are 5 characters "99999". Fairly basic stuff. I am also combining the City, State, and Zip of my report into 1 text box.
I'm trying to get cute (which is always dangerous), but I'm hoping someone can explain why this code throws a 'Specified argument was out of the range of valid values. Parameter name: startIndex' when I go to preview the report. If I don't have more than 5 characters, I don't want it doing the insert. Since the 'test data' is empty (as I'm just previewing the design), it shouldn't be evaluating the Insert I wouldn't think.
=Format("{0}, {1} {2}",Trim(Fields.City), Fields.State, IIf(Len(Fields.Zip)>5, Insert(Fields.Zip,5,"-"),Fields.Zip))Thanks for any info!

Hello,
May be I'm asking already answered question but at the moment I'm frustrated in this point and can't find a solution to this.
I have designed a report. My report's Page Header section is pretty large and I have placed two panels in it. The first panel is visible only on First Page and second panel is visible on every pages, which is running perfectly.
I'm hiding the first panel using Conditional Formatting on every page except first page. My problem is that, it occupies the space on every page when it hides. I want to shrink that space when the panel is hide.
I can not use Group Header instead of Page Header because I need to show PageNumber and PageCount in my header section, which will not be accessible in Group Header.
Hope my question makes sense.
Thanks,
Jameer
Hi Friends,
I need to create a telerik report table with dynamically with grouping and subtotal under the table. I succeed but the achive the dynamic table with dynamic coloumns and also in grouping. but grouping came as this format only. How i bring my desired output and how to add subtotal under each groupings. pls help