Telerik Forums
Reporting Forum
11 answers
2.3K+ views
Hello,
I successfully can bind data elements to the detail section of my report but not to the page header.  When I try to bind:
=First(<columnName>)
in the page header and run the report, I get a 'Column <columnName> does not belong to the table' error.

However, I can drag that textbox to the details section and it works.

What am I missing here?
Thanks - Justin
Hadib Ahmabi
Top achievements
Rank 1
 answered on 11 Mar 2013
3 answers
2.0K+ views
Hi,

I have some columns say sales tax,amount,reimbursable(boolean flag). Now at the end I need to display the totals of amount whose reimbursable flag='True'.
for eaxample there are 10 rows out of which 5 rows have only reimbursable flag='true' then i need to display the amounts total only for those 5 rows. please help me in regarding this.

regards
sharan
Hadib Ahmabi
Top achievements
Rank 1
 answered on 11 Mar 2013
1 answer
204 views
Telerik report 6.2.13.109
FireFox 19
Adobe acrobat 11.0.2.0

when click to print button page is postback but print window not called.
Squall
Top achievements
Rank 1
 answered on 11 Mar 2013
2 answers
931 views
Just upgraded to the very latest version (from the previous version) and now I get the following error. There's no code changes on our site its exactly the same. We are using the ASP.Net Reportviewer in SharePoint 2013.

"The source of the report definition has not been specified"

string fullReportPath = ReportHelper.GetFullReportPath(reportInfo);
ReportSource reportSource;
if (File.Exists(fullReportPath))
{
  reportSource = new UriReportSource { Uri = fullReportPath };
}
else
{
throw new BusinessException(ReadershipWeb.ReportCouldNotBeFound);
}
this.ReportViewer1.ReportSource = reportSource;
Chris
Top achievements
Rank 1
 answered on 11 Mar 2013
26 answers
432 views
Does the reporting tool work in a Medium Trust environment?
Jan
Top achievements
Rank 1
 answered on 08 Mar 2013
2 answers
177 views
Hi,

I installed  HelveticaNeueLTStd-Lt.otf  on my development machine (present in  C:\Windows\Fonts) but i cannot see it in telerik reporting dropdowns.  

I attach a snapshot of the fonts in the windows/fonts directory where their properties are visible. is it possible that the fonts are not displayed because of the embeddability?

how do I fix this problem thanks in advance. 
Ivan
Top achievements
Rank 1
 answered on 08 Mar 2013
9 answers
145 views
Hi,

I've got a problem with the quality of the output when printing from the Silverlight ReportViewer.
If I print from the designer's preview or set the UseNativePrinting property of the ReportViewer to false everything is sharp.

But using the native silverlight printing in the ReportViewer makes the output of barcodes and Telerik.Reporting.Shape types like ellipse very blurry on paper, regular text is still sharp though.


Tomas
Tomas
Top achievements
Rank 1
 answered on 08 Mar 2013
4 answers
93 views
Hi

Firstly I wanna thanks Telerik for it's excellent Reporting tool :)

My question:
I have developped a program for printing labels. Now I saw that it prints labels from top->bottom then column 2 etc.
Now I want it to print from left to right, then row 2, 3 etc.
I don't know how to do it? Is it possible? It's of great importance to me!

Thank you in advance

Marnik
VB developper
Peter
Telerik team
 answered on 08 Mar 2013
1 answer
78 views
Hi,

I am not sure this is the right place to post improvement suggestions but i will drop it here anyway:

while editing an existing binding expression in the "edit binding" dialog by double clicking the expression ( i.e. without invoking the "edit expression" using the dropdown) using the arrow keyboard keys causes the focus to change to the property path. This behavior is not intuitive and mildly annoying.


Peter
Telerik team
 answered on 08 Mar 2013
1 answer
252 views
Hi,

In Visual Studio 2010 I added a data source to sql server 2008 r2 . In Configure DataSource Command screen I added a store procedure, I gave the parameters, I press the button Execute query, it shows nice the results but when I click Finish, no fields are shown in Data Explorer.
I did some tests and I discover when I have a stored procedure that internal use temporary tables, and the last select is from temporary table, it not shows the fields in data explorer.
Example
-------------------this doesn't show the field department in data explorer -------------
create procedure TEst_Department
as
BEGIN
SET NOCOUNT ON


select 'D1' as Department into #temp1

select * from #temp1

 END

 --------------this shows the data in data explorer

create procedure TEst_Department
as
BEGIN
SET NOCOUNT ON

select 'D1' as Department into #temp1

DECLARE @dept TABLE
(
    department NVARCHAR(10)
)


insert into @dept (department)
Select Department from #temp1

select * from @dept

 END

----------------------------------------------------------------


I have a pretty complicated stored procedure with a lot of temporary tables and at the end I have to add a Table variable and I have to insert the results in this table variable in order to work with your reports

Any thoughts ?

Regards,

Hans

Stef
Telerik team
 answered on 07 Mar 2013
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?