Telerik Forums
Reporting Forum
1 answer
87 views
I have a project using Telerik Reporting 2013Q2 sp1. When adding an EntityDataSource in the report designer, the configuration utility fires up.  I then choose a (valid) connection string and press next. The 'Choose a context' panel then takes more than 3 minutes to display my project's context. It is a relativelly small project and I cannot understand why it takes so long. When using hte ObjectDataSource object, the context along with the other database objects appears instantly.

Does anyone have any ideas on what is wrong here???

IvanY
Telerik team
 answered on 31 Oct 2013
1 answer
401 views
Hello,

Need to know one thing how do i vertical, and horizontally align report directly in the middle, or center in Telerik.Reporting Winforms 2013 Q3? I have attached a pick as of now it is align vertically to the left, and horizontally to the top.
Peter
Telerik team
 answered on 31 Oct 2013
4 answers
346 views
Hi,

I have one detail section within a group section containing one textbox bound to a datafield called projNr.
For each group item I would normally have several of rows with projNr.

How can I show these in a multicolumn table or such so that the number of pages decreases?
Is the table component my best shot or should I format my data in code behind into a htmltextbox instead?

Looking forward to an answer!

Thanks,
Per
Stef
Telerik team
 answered on 31 Oct 2013
2 answers
62 views
Hi Telerik,

I am new to the whole 'reporting' scene. But I'd like to layout a report that uses 2 data tables into a logical tabular format.

For example please consider the picture attached. I would like the table to grow sideways. The Subject column is data from 1 data table while the remaining property columns including adjustment columns are a flattened data table that was a result from a join.

I can't figure out how to data bind these two tables into a report table. Also I am having trouble understanding how the report will grow sideways and line up values correctly if (as the documentation suggests) I have to use a sub-report.

As you can see I'm a little bit more than confused here. Any help would be appreciated.
Craig
Top achievements
Rank 1
 answered on 30 Oct 2013
1 answer
151 views
Hi telerik team:

I've just updated to new telerik report libraries and I've discovered that ReportSource property doesn't exist and I don't know how to bind the report as old way. This is the code:

  private void RunReport(DataTable dt)
    {
        Report report;
        XmlReaderSettings settings;
        XmlReader xmlReader;
        ReportXmlSerializer xmlSerializer;

        settings = new XmlReaderSettings();
        settings.IgnoreWhitespace = true;
        using (xmlReader = XmlReader.Create(Server.MapPath(@"SupervisoryExceptions.trdx"), settings))
        {
            xmlSerializer = new ReportXmlSerializer();
            report = (Report)xmlSerializer.Deserialize(xmlReader);
        }
        report.ReportParameters["pDatabase"].Value = "Test Searching";
        report.PageSettings.PaperKind = System.Drawing.Printing.PaperKind.Letter;
        report.DataSource = dt;

        // Use the InstanceReportSource to pass the report to the viewer for displaying
        Telerik.Reporting.InstanceReportSource reportSource = new Telerik.Reporting.InstanceReportSource();
        reportSource.ReportDocument = report;

   //This is the line that doesn't compile
        reportViewer1.ReportSource = reportSource;
    }
Saju Samuel
Top achievements
Rank 1
 answered on 30 Oct 2013
1 answer
133 views
Hey there,

just a quick Question:
Is it possible to programmatically change a report that is being generated by the Telerik Reporting REST Service?
The ItemDataBinding or needDatasource events to which I can subscribe when resolving the report are unfortunately not fired.

To be more specific, I would need to alter a datasource of a report depending on the passed report parameter values.

I have a DataSource which takes multivalue parameters but it is possible that those Lists are empty. Currently the DataSource will be empty in that case so I'd like to be able to change the SQL and remove the parameters which are empty.

Thank you for your help!

Regards,
Kris
Peter
Telerik team
 answered on 30 Oct 2013
3 answers
132 views
I'm wondering if anyone else is having this problem. Every attempt I've made at running a report in the new viewers is rendering something similar to this, using just the js version or the MVC helper. If you look at the js, it seems to be parsing out the attributes of elements incorrectly in whatever process generates the html for the actual report. I haven't seen any other complaints, but I'm not getting it to work even with the given project. I really would like to be able to implement this tool for one of our upcoming projects.

EDIT: I just tried it in 2012 and it did work. I guess when I seen the 2013 solution file, I figured it would work the same. Any thoughts on why this is happening in 2013? The rest of our solution has already been migrated to a 2013 project.
Stephen
Top achievements
Rank 1
 answered on 30 Oct 2013
1 answer
59 views
hello , 
how can i export telerik report into Excel 2007 format ? actualy i have Excel 97-2003 . i am using telerik reportin 2013 Q2 . 

best regards
Stef
Telerik team
 answered on 29 Oct 2013
1 answer
123 views
Hello

This is my first question in the community .

See if you can help me.

I have a DataSet with this extrutura :
DsReportModel
-> Noconta
- > Descr
- > Month
- > Value
-> Variation


By creating a simple report to display the data, it looks like this:

noconta----descr --- month ------value --- variation
1.1-----------Account1-----1-----------10.00-------0
1.2-----------Account2-----1-----------12.00-------2
1.3-----------Account3-----1-----------11.00-------1
1.4-----------Account4-----1-----------16.00-------4
2.1-----------Account5-----1-----------12.00-------2
2.2-----------Account7-----1-----------12.00-------6
2.3-----------Account8-----1-----------11.00-------7

1.1-----------Account1-----2------------11.00------3
1.2-----------Account2-----2------------16.00------2
1.3-----------Account3-----2------------17.00------1
1.4-----------Account4-----2------------18.00------7
2.1-----------Account5-----2------------10.00------8
2.2-----------Account7-----2------------11.00------2
2.3-----------Account8-----2------------12.00------1


I would like to create a report to display the information as follows:
noconta----descr --- | $ month1 | variation month1 | - | $ month2 | variation month2 |
1.1-----------Account1-----10.00-------------------0-----------------11.00-------------------3
1.2-----------Account2-----12.00-------------------2-----------------16.00-------------------2
1.3-----------Account3-----11.00-------------------1-----------------17.00-------------------1
1.4-----------Account4-----16.00-------------------4-----------------18.00-------------------7
2.1-----------Account5-----12.00-------------------2-----------------10.00-------------------8
2.2-----------Account7-----12.00-------------------6-----------------11.00-------------------2
2.3-----------Account8-----11.00-------------------7-----------------12.00-------------------1

In the DataSet , it is possible that the information for the month does not always start in one month because the data comes from a selection of the user can choose the report from the month 7 - and month 12 , in which case the DataSet would only information of 7 months until month 12.

I appreciate any help or suggestion .


Note :
I'm using C # .

Thank´s
Nasko
Telerik team
 answered on 29 Oct 2013
1 answer
137 views
Hi everyone

my question.

how to do change telerik report viewer or report (in class library) icons.

print icon,export icon,next previous icon etc..

note : I'm using ASP.NET for Visual studio 2012
Stef
Telerik team
 answered on 28 Oct 2013
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?