Telerik Forums
Reporting Forum
2 answers
118 views
Hi everyone,

i've discovered a problem and would like to know, if this is an error on my side, or if anyone can reproduce it.

Here the HTML code:
<p style="margin: 0px 0px 0px 0px;text-align: left;text-indent: 0pt;padding: 0px 0px 0px 0px;">
<span style="font-family: 'MS Sans Serif';font-style: normal;font-size: 11px;color: #000000;background-color: #FFFFFF;">Test for the missing </span>
<span style="font-family: 'MS Sans Serif';font-weight: bold;font-size: 11px;color: #000000;background-color: #FFFFFF;">character</span>
<span style="font-family: 'MS Sans Serif';font-style: normal;font-size: 11px;color: #000000;background-color: #FFFFFF;"> at the end of a bold span</span>
</p>

When i put this into the expression editor (in html view) and switch to design view, everything looks find. But when the report is rendered, the last character of the bold part of the code (in this case the letter 'r' in the word 'character') is gone.

Waiting for you observations ;)

Regards,
Michael
Michael Hilgers
Top achievements
Rank 1
 answered on 22 Jun 2012
0 answers
89 views
Hi,
How to create line chart in telerik reporting using VB code
Gunasekar
Top achievements
Rank 1
 asked on 22 Jun 2012
1 answer
139 views
hello,

Do you plan to add a report item to show spatial data ? For example in sql server reporting service we can add a map item and show spatial data from a data source. i know i can insert an image but it is not handy.


Thanks in advance
sebastien
IvanY
Telerik team
 answered on 21 Jun 2012
1 answer
207 views
I have a Crosstab that is displaying data from a SQL data source. The data is grouped by the field FacilityID. I have a report parameter Facility that is a multiselect dropdown populated from another SQL datasource. How can I filter the Crosstab based on the selections in the Facility dropdown? When editing the filter property of the Crosstab it does not show the fields associated with that DataSource.
Peter
Telerik team
 answered on 21 Jun 2012
1 answer
233 views
Hi,

how can I extract the number of rendered pages from a Telerik.Reporting.Report ?
The idea is to check via a unit test if no empty pages are generated by a report.
(E.g. report with known data has 2 pages. Changing the layout later on causes an empty page. Report has now 3 pages, unit test detects this problem.)

Regards,
Marco
Peter
Telerik team
 answered on 21 Jun 2012
2 answers
237 views
Hi.
I made a report. It is very simply report, without no calculation no aggregation, only displaying data.
Storage procedure as a data source need 7 seconds to display 14.000 rows, but telerik report needs 3 minutes.
I read this article, but nothing described helped. Is any other possibility to improve report rendering?

--
Daniel
Daniel
Top achievements
Rank 1
 answered on 21 Jun 2012
3 answers
320 views
Hi there

I have reporting DLL setup up that I reference in my web application.

There is a report type called DefaultCertificate in this class lib, I can change the datasource dynamically, but what I want to do is apply a template at runtime as well.

Some clients will have their own template, but with the same fields. I know there is something like a trdx file that keeps the template? But can't seem to find decent documentation on it.

Long story short:

1. How do I save my current or any other report design to a trdx file
2. How would I apply that trdx file to the certificate at run time?
        DefaultCertificate applicantCertificate = new DefaultCertificate();
        applicantCertificate.DataSource = application.GetCertificateDetails(applicantID, applicationYear);
 
//something to do the following?
applicantCertificate.Template = "location of template trdx file";

Thanks.
IvanY
Telerik team
 answered on 21 Jun 2012
1 answer
145 views
If I have a WPF smart client with Server that contain all data. 
I want to add reports to the WPF client. 
What are the best practice for that? 
What data source should  I have? 
There is a lot of data, should I retrieve all rows to client?! or can I generate the report on server with some paging? 

Thanks. 

Peter
Telerik team
 answered on 21 Jun 2012
0 answers
82 views
Dear All,

    I have two questions:

    1st: End-user accessability
    ======
    I want to know if it is possible by any mean to give the end-user the ability to define the sort criteria to the generated report or not.
    I will appreciate any solution, as I couldn't find any by myself...
    
    2nd: Localization
    ======
    a. How should I localize the report contents
    b. I have a global switching of the language and it is working fine, except for the reportviewer ...I need to reload the reportviewer itself 
    to take the effect of the language setting changes, is there any way to implement this as the normal .resx files ? 
    as for normal .resx  files I can do this 
    
((ResourceWrapper)Application.Current.Resources["ResourceWrapper"]).ScreensRes = new ScreensRes();

    after changing the culture .

Best regards
Ubuntu
Top achievements
Rank 1
 asked on 21 Jun 2012
3 answers
150 views
Hello

I am working with Telerik reports in Microsoft Visual Studio 2010. Using the code in a Telerik Reporting Tutorial, I am trying to use a C# code the designer code to populate and assign a data source. Following is my code:

namespace ClassLibrary3
{
    using System;
    using System.ComponentModel;
    using System.Drawing;
    using System.Windows.Forms;
    using Telerik.Reporting;
    using Telerik.Reporting.Drawing;
    using System.Collections.Generic;

    /// <summary>
    /// Summary description for Report5.
    /// </summary>
   

    public partial class Report5 : Telerik.Reporting.Report
    {
      public Product ProductList()  
//The error here is' Not all code paths return a value'
        {
            //
            // Required for telerik Reporting designer support
            //
            InitializeComponent();
            List<Product> products = new List<Product>();
            products.Add(new Product("bicycle"));
            products.Add(new Product("helmet"));
            products.Add(new Product("shoes"));
// Assign the generic list as the report DataSource
            this.DataSource = products;
         

            //
            // TODO: Add any constructor code after InitializeComponent call
            //
        }
    }
     public class Product
{
private string _name;
public Product(string name)
{
_name = name;
}
public string Name
{
get { return _name; }
    set { _name = value; }
}
}
}

Can someone please help me out? How do I get rid of this error message and preview the report?

Thanks,
Steve
Telerik team
 answered on 21 Jun 2012
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?