Telerik Forums
Reporting Forum
3 answers
408 views
Hi,

Is it possible to convert a Crystal Report report to a Telerik Report using the Telerik Report Designer?

If so, how?
If not, can I put it on the feature request list? :)

I have tried to convert several Crystal Report files by adding then onto a page, but this way I cant seem to convert it to a TRDX file..
And since we need to check them all by hand using the Report Designer it would be a very neat feature in the Report Designer.

Insad
Stef
Telerik team
 answered on 02 Oct 2015
3 answers
118 views

Hey folks,

 Was just wondering if it would be possible to get an status update on this reporting feature request? http://feedback.telerik.com/Project/162/Feedback/Details/128861-nested-tables-should-not-be-kept-together - its currently showing as being in development and looks like its been that way since last year.

 

Thanks.

Stef
Telerik team
 answered on 02 Oct 2015
3 answers
160 views

Hi

Do we have smart labels feature for telerik reporting graph? lot of cool features in chart are missing in graph or we are not able to find.

do you have a comparison sheet of what features are missing in reporting.graph compared to reporting.chart?

1. smart labels

2. label aligned to vertical position

3. tooltips on mouseover on bars 

4. auto resize graph if we have lot of data?

can you suggest us how to implement these as labels could have long names or lot of chart datapoints we would like to show on mouseover etc.

 

Stef
Telerik team
 answered on 02 Oct 2015
5 answers
604 views
In the CrossTab Table I have two columns for each column group and I want those columns to size according to the largest value in the list.  I tried to use the CanGrow and CanShrink properties but they don't appear to work.  I have set them to True for every column in the table but it still either wraps the text or leaves it too wide.  How can I get the column sizes to size properly?
Stef
Telerik team
 answered on 02 Oct 2015
1 answer
565 views

Hi all. I have a problem and don't know how to fix. I add a reportviewer control to aspx and try to set the ReportSource from code behind. The report is rendering on page, but unfortunately there is no content. When debugging i see that the ReportSource of report viewer is the same, which i bind, but no table shows on screen. I'm creating the Report object programmatically. If load report, created from standalone Report Designer there is no problem. 
 This is the custom object I've tried to bind:
"[DataObject]
public class ReportSource
{
    [DataObjectMethod(DataObjectMethodType.Select)]
    public IList<Source> GetData()
    {
        var result = new List<Source>();
        var data = ActiveTradesCache.GetActiveTradeData();

        foreach (var item in data)
        {
            result.Add(new Source() { Rate = item.OrderRate });
        }


        return result;
        //trgOpendDeals.DataSource = new Object[0];
        //trgOpendDeals.MasterTableView.VirtualItemCount = 0;
        //trgOpendDeals.DataBind();
    }

}

public class Source
{
    public double Rate { get; set; }
}

"
 And the fill source method, which is in Page_Load event:
 "
Telerik.Reporting.ObjectDataSource objectDataSource = new Telerik.Reporting.ObjectDataSource();
objectDataSource.DataSource = typeof(ReportSource);
objectDataSource.DataMember = "GetData";
Telerik.Reporting.Report report = new Telerik.Reporting.Report();
report.DataSource = objectDataSource;
Telerik.Reporting.InstanceReportSource reportSource = new Telerik.Reporting.InstanceReportSource();
rvOpenDeals.ReportSource = reportSource;
// Calling the RefreshReport method in case this is a WinForms application.
rvOpenDeals.RefreshReport();


reportSource.ReportDocument = report;

"

 

Best regards,

Lachezar

Stef
Telerik team
 answered on 02 Oct 2015
4 answers
486 views
I am brand new to Telerik and focused on learning both HTMLChart and the ReportViewer for reporting in an ASP.NET web site. Got a simple HTMLChart working first day.  Now I want to learn the reporting side using the report-designer tools. I have come to conclusion that reports using the designer should be built using the design environment within VS 2013 (although I was able to display a simple, no parameters report from a .trdx file by using UriReportSource()). However, I cannot figure out how to get the report designer started in VS 2013.

The link below says to click on or right-mouse "report.cs". However, I don't have a report.cs file in my project. Any thoughts? What am I missing? I have installed both the DevCraft AJAX UI and Reporting using the "Control Panel" from Telerik. All of the tools are there. But no option to start the report designer in the Telerik menu.

- VS 2013
- Latest Telerik build Q2 2014 as of yesterday.
- Windows 8.1

http://www.telerik.com/help/reporting/ui-report-designer.html

TIA
Don
Stef
Telerik team
 answered on 02 Oct 2015
4 answers
376 views

I have a problem with the newest telerik Reporting component. I have successfully designed a report and embedded every thing in an application. The source of the report is a SqlDataSource which has access to an SAP Sybase SQL Anywhere 12 database. Every thing works fine with the following statement:

 

select * from document

 

A problem occures if i add some parameter to the statement:

 

select * from document where id = ?

 

If i add this i don't get any error message nore the report works correctly. I only get a blank page. In the designer and in the viewer. I tried some different parameter passing methods but nothing works. What is the problem here? I also could not find anyhing in the documentation for SAP Sybase SQL Anywhere 12. Is this not supported? (It should because it is simple ADO.Net). I've tried a lot with the parameter system but still wount work. Thank you very much!

 P.S. i add the parameter like this to the report:

SqlDataSource ds = (report.DataSource as SqlDataSource);
ds.Parameters.Add(new SqlDataSourceParameter(​"Id", DbType.Guid, ​... some guid ...));

Stef
Telerik team
 answered on 02 Oct 2015
1 answer
256 views

Hi, 

 

I'm evaluation the Telerik Reporting to buy some licence in my company but the first problem I found, the documentation is basic, so I can't found how to can do pagination with SQL Server data source, the report has around 30,000 rows so when it try to render in the browser crashing.

 

I'm using HTML5 Viewer and WebAPI to render the reports, 

I'm thinking in page from store procedure but I not found information how  to configure the pagination control to return the number of records or to identify the page number

 

Somebody can help me to resolve it?

 

Nasko
Telerik team
 answered on 02 Oct 2015
1 answer
163 views

I have a WPF app and am using the latest 2015 packages.  I have a report where the datasource is an IEnumerable of business objects which I set in the code behind.

this.DataSource = ListOfItems;

 

I have a single group where the header displays one field of my object.  The details section contains a table that should show the rest of the object properties. The groups work fine this way, but the table does not.   The table shows several empty rows.  And also, the column headers are repeated for each row.  I found a previous post http://www.telerik.com/forums/table-in-detail-section-of-group and set the binding for the table datasource as instructed.  This fills out the rows in the table, but the column headers are still duplicated for every single row.

 

Please advise.

Stef
Telerik team
 answered on 01 Oct 2015
6 answers
657 views
Hi,

I have a Report based on a database table. I have interger fields in the table(0 for false and -1 for true). These fields should be represented in report as checkboxes.
How can I bind the columns for checkbox state (checked/unchecked).

I am using following expression for the Value property of the checkbox, but the checkstate is not changing.
= IIf(Fields.col1< 0, True, False).

Am i missing anything?

Thanks
TelDev
Stef
Telerik team
 answered on 30 Sep 2015
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?