Telerik Forums
Reporting Forum
1 answer
83 views
Hello!

i have one question. I make report that has one table in it, and text over and under table. My customer want that when he export to word, that is only table real table, and text is plain text. Because when he open it ,with table pc or phone, he viwe borders all over the report. My word doesn't make them, but seems that other versions of word show table borders. is any way to do this? I'm afraid that this is not possible, because al report is generated as a table. am i right?

Thanks
Elian
Telerik team
 answered on 13 Mar 2013
3 answers
179 views

We are having an issue when printing reports via iPad.  The report will generate and preview correctly.  However once you attempt to print the report it print once but then “locks up” and will not generate the report viewer again.  Issue happens in the Safari and Opera mobile browsers.

Process given below:

Enter the parameters for the report and click "Go To Report":
https://dl.dropbox.com/u/10641149/Photo%20Jun%2022%2C%204%2001%2024%20PM.png

Preview displays.  Click the Print button in the top toolbar.
https://dl.dropbox.com/u/10641149/Photo%20Jun%2022%2C%204%2001%2057%20PM.png

Report is generated for actual printing.   Click the back arrow in the browser. 
https://dl.dropbox.com/u/10641149/Photo%20Jun%2022%2C%204%2002%2037%20PM.png

Returns to this screen.  Click the custom “Done” or click the back arrow in the browser.
https://dl.dropbox.com/u/10641149/Photo%20Jun%2022%2C%204%2001%2057%20PM.png 


Returns to this screen.   Any subsequent attempts to hit the "Go To Report" button do nothing and the browser becomes unresponsive to the button click.
https://dl.dropbox.com/u/10641149/Photo%20Jun%2022%2C%204%2001%2024%20PM.png 

Petio Petkov
Telerik team
 answered on 13 Mar 2013
1 answer
490 views
I am in report designer, have a data source - from a sql data base/connection - i can run through the data source wizard through test and see the data i need to use in this report.  I grab a textbox or a htmltextbox from the toolbox (Telerik Ajax Controls) - and place it on the report - then go to the Properties view, go down to the Value property, click it to bring up the Edit Expression and when I select Fields, the box where the data source fields should be says "No Data Source".  I have done many reports - and this box displays the data source fields just fine, and now it does not.  Where am i overlooking? 

Thanks in advance.

Don
Obi-Wan Kenobi
Top achievements
Rank 1
 answered on 13 Mar 2013
2 answers
151 views
Dear team,
I installed the new version of telerik reporting tool
and now i lost the auto complete feature in the visual studio for the report viewer control i don't know why.

a part of my web config file :

  <configSections>
        <section
                name="Telerik.Reporting"
                type="Telerik.Reporting.Configuration.ReportingConfigurationSection, Telerik.Reporting, Version=7.0.13.220, Culture=neutral, PublicKeyToken=a9d7983dfcc261be"
                allowLocation="true"
                allowDefinition="Everywhere"/>
    </configSections>
    <Telerik.Reporting>
        <!--<Extensions>
            <Render>
                <Extension name="PDF" description="PDF" visible="true">
                    <Parameters>
                        --><!--<Parameter name="DocumentAuthor" value="Mohammed"/>--><!--
                    </Parameters>
                </Extension>
            </Render>
        </Extensions>-->
        <Cache provider="File">
            <Providers>
                <Provider name="File">
                    <Parameters>
                        <Parameter name="BasePath" value="~/Bartizan_Reports_Data_Cache" />
                    </Parameters>
                </Provider>
            </Providers>
        </Cache>
    </Telerik.Reporting>
    <!--Reports [Ends]-->
  <assemblies>
 <add assembly="Telerik.ReportViewer.WebForms, Version=7.0.13.220, Culture=neutral, PublicKeyToken=A9D7983DFCC261BE"/>       </assemblies>
Mohammed
Top achievements
Rank 2
 answered on 13 Mar 2013
1 answer
324 views

Hi, I'm using version Q1 2013.

We have a report which consists of several panels laid out next to each other vertically - each panel contains a header textblock and a table for rendering fields.

When the panels are not shown, they should collapse so that panels underneath take their space completely (ie, so there are no whitespace gaps).

If I set the visibility of a section panel to false using conditional formatting, then the panel does not display, but the whitespace does not collapse either as desired. It looks like the panel is still taking up the minimum amount of space as it does in the designer.

How do I go about resolving this? I thought that this would just work out of the box, so not sure what I'm doing wrong?

Thanks,

Sam
Elian
Telerik team
 answered on 13 Mar 2013
4 answers
232 views
Hello,

I'm trying to connect EntityDataSource Wizard with existing ObjectContext but a method that executes data retrieval doesn't show on Object Context members list. Method GetProducts looks like this:

     [EnableClientAccess]
    public class AdventureWorksDomainService : LinqToEntitiesDomainService<AdventureWorksEntities>
    {
        public IQueryable<Product> GetProducts(string name)
        {
            return ObjectContext.Products.Include("ProductModel").Where(w => w.Name.Contains(name));
        }
    }

Complete solution is rebuilded successfuly. Why there is no GetProducts method on the Object Context members list?

Any help appreciated!
Peter
Telerik team
 answered on 13 Mar 2013
1 answer
181 views
Hi

Is there a way to use the reporting controls to report sharepoint list data? If so, could someone point me to a sample?

Thanks
Anil
Squall
Top achievements
Rank 1
 answered on 13 Mar 2013
4 answers
163 views
HI,

I am having this strange problem with the silvelight report viewer. I've created a report with an graph on the header part, you can see the designer preview in the attached image (designer_preview.png). When I open it up on the viewer it does not show the graph (view.png). Noe the weird part is that if I go and export the file into pdf the graph shows again (export.png).

Any ideeas ?

Thank you,
Joshua
Top achievements
Rank 1
 answered on 12 Mar 2013
3 answers
110 views
Hi ,

On a web page I have a report viewer that shows well the reports. If I change and I want to show a graph, it shows only some numbers corresponding to Categories in graph, but no graph at all

What did I miss?

And is any documentation for graphs ? I find very difficult to configure manual the series, categories and so on.

Regards,
Hans
Elian
Telerik team
 answered on 12 Mar 2013
1 answer
109 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; }
        }
    }
}


 know that problem is with my bindings.

I have attached my output also.
Please let me know the soultion for my problem.
Elian
Telerik team
 answered on 12 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?