Telerik Forums
Reporting Forum
3 answers
65 views
Hi there, as the title says, I have a report with many records, as you can see in the page, but I can not seem to share the report header with the detail section even when there's still space available(the header prints in one entire page all by itself) I set the property "KeepTogether" to False. For every object that has that property (Textbox, Panel, List, Groups). thanks in advance. I attaching the pages as individual files. thanks!
Elian
Telerik team
 answered on 11 Mar 2013
3 answers
184 views
Hi,

Find the Screenshot for My report structure.
My Report is in seperate Class Library.

In my XAML.cs

using System.Collections.Generic;
using System.Linq;
using Telerik;
using Telerik.Reporting;
 
namespace MyReport
{
    public partial class MainWindow
    {
        public MainWindow()
        {
            InitializeComponent();
 
            var project = new List<Project>();
 
            var pro = new Project {Name = "Name One", Nos = new List<int> {1, 2, 3, 4, 5}};
            project.Add(pro);
 
            pro = new Project {Name = "Name Two", Nos = new List<int> {1, 2, 3, 4, 5}};
            project.Add(pro);
 
            var reportSource = new InstanceReportSource {ReportDocument = new SampleReport()};
            reportSource.ReportDocument.Reports.FirstOrDefault(rep => rep.Name == "SampleReport").DataSource =
                project;
            reportViewer1.ReportSource = reportSource;
        }
 
        private class Project
        {
            public string Name { get; set; }
            public List<int> Nos { get; set; }
        }
    }
}

I know that problem is with my bindings.

I have attached my output also.
Please let me know the soultion for my problem.
Hadib Ahmabi
Top achievements
Rank 1
 answered on 11 Mar 2013
11 answers
2.2K+ 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
193 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
910 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
420 views
Does the reporting tool work in a Medium Trust environment?
Jan
Top achievements
Rank 1
 answered on 08 Mar 2013
2 answers
171 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
134 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
91 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
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?