Hi,
I have telerik reports in WinForm project. I have another project which is WebApp in Angular & Web API as well. I want to give a "Download" option to my WebApp. On click of that button, i want to download telerik report in pdf format. I don't want to re-create my all telerik report in Angular project. Please suggest me a better solution.
Thanks
Hello,
I'm using WebServiceDataSource to connect with database through odata. In database there is InventoryDocDetail table which has Product property referenced to Product table.
I'm connecting to InventoryDocDetail and printing the product's Sku property on my report. The problem here is InventoryDocDetail.Product may be null. In this case, I just want to print nothing. Currently it gives null reference exception error(See attached Error.JPG file).
I saw many forums, but no one helped me. For example, I wrote like this expression in textbox: = iif(Fields.Product is null, "this is null", Fields.Product.Sku), but it still showing error when product is null.
1. How can we solve the issue?
2. Can we use C# expression here like this: "= Fields.Product?.Sku" ?
Hi,
I have some columns that sometimes may have null values... I got the null rows to shrink with CanShrink = True in Layout property, but it seems this doesn't seem to work on the columns...I've attached some pics... Any help?
Hello,
I have graph with Y axis (date) and i need hide date without values. It is possible?
Hi,
I am facing a issue in integration report in my application.
How to create the report in telerik.
I have tried to add the reportviewer on page and bind the reportsource with trdp file(designer) but
after run page show blank.
Please help me to resolve this issue.
Thanks,
Dipendra
Hello Guys,
I've used this font Eczar (Marathi) in one of my reports. When I preview the report, the fonts are displayed well as designed. But when I export the same to PDF the fonts won't show up.
Hi,
I would like to have a list of objects which all inherit of the same type but can have some specific properties.
Exemple:
public
class
MyPrimaryClass
{
public
int
CommonProperty {
get
;
set
; }
}
public
class
MyInheritedClass1 : MyPrimaryClass
{
public
int
SpecificProperty1 {
get
;
set
; }
}
public
class
MyInheritedClass2 : MyPrimaryClass
{
public
int
SpecificProperty2 {
get
;
set
; }
}
And I would like to display these specific properties and if possible display each object in a specific format. Do you have an idea of how I can do that using telerik reporting ? I can't find any example or thread on this topic, but maybe I just didn't use the right key words ;)
Thanks and regards,
Olivier
Hello,
i have a field returning Boolean Value (True/False), and i want to Sum another field Named (Total) in the footer section when my Boolean Value return TRUE for each record in the detailed section
Thanks.