Hi,
Im working on a multi themes application using NoXaml dlls and Telerik.Windows.Themes.<THEME>.dll libraries.
All works perfectly but not the repoirt viewer. The Telerik.Windows.Themes.<THEME>.dll don't contains Telerik.ReportViewer.Wpf.xaml resource?
Why?
You can add it on next release?
Thanks,
marc.
Hi,
I am using Telerik reporting.
I have some reports that have some graph and table in the report design.
When I try to export a report in CSV format, it was showing some extra static columns.
I have tried this
https://www.telerik.com/forums/report-export-to-csv-has-extra-columns
and this
https://docs.telerik.com/reporting/configuring-telerik-reporting
With the help of these configuration now static data is not showing in report, but now the problem is that report is exporting all the data present in report data source. So in report CSV I can see many tables spanning across different columns in CSV with varying number of rows.Is there any option available to control the data/component being exported in output CSV, lets say I just want to export a table data in CSV not the source data for some graph on the same report.
I have successfully created a reportslibrary.dll as a class
library containing my reports and when called from a winforms.exe it works as
expected.
I'm creating an add-on application for AutoCAD that requires my
code to be compiled as a class library(dll).
When I call on my reportslibrary.dll from my AutoCAD dll I receive
the following error:
Invalid report type
Value cannot be null.
Parameter name: type
Any reason why I
can’t call on my reportslibrary.dll from a dll and I can from an exe?
I have verified
all setting are the same.
Hi,
I'm trying to bring just the required data in line X. however empty data is also coming as if it were repeating.
Hi. My Client has a very old version of Telerik Reports and I need to do some adjustments. I went to my product page to try and download an earlier version, but, it doesn't seem to go back quite this far (currently 10.0.16.13)
Is there anyone I can contact to try and get the version: Telerik report 7.0.13.426 (Q1 2013) or am I looking in the wrong place on the Download Page?
Many thanks
Chuck
Could someone please help. I am trying to understand how to code a conditional IIF() clause with a new line.
My goal is the following:
mfgTitle
Bob
Smith
Here is what I have tried
First: I have tried using an htmlTextBox and using the conditional expression within it. This caused the htmlTextBox to throw an error over the </br>
IIF(value <> 1, {Fields.mfgTitle} <br/> {Fields.FirstName}<br/>{Fields.LastName}, {Fields.FirstName}<br/>{Fields.LastName})
Also I tried the following
IIF(value<> 1, {Fields.mfgTitle} + "\r\n" + {Fields.FirstName} + "\r\n" + {Fields.LastName}, {Fields.FirstName} + "\r\n" + {Fields.LastName})
Any Help would be greatly appreciated.
Thank You