Telerik Forums
Reporting Forum
11 answers
380 views
I am trying to embed a telerik report into my asp.net web application and am having difficulties.  The report was built in a class library, "blah.Reports" and then the project was added to my application.  I added the reference to the class library as well.  When I try to set the "Report" property of the ReportViewer in my page I get a Visual Studio Error:

Value cannot be null.
Parameter name: key

Because I could not get around this I tried another route:
I looked at some examples and manually set the report property in the xaml with this:
blah.Reports.Statement, blah.Reports, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null

Now the report shows up in the page with text boxes to enter the parameters, but as soon as I enter them I receive a new error:

An error has occurred while processing Report 'Statement':
Unable to establish a connection to the database. Please, verify that your connection string is valid. In case you use a named connection string from the application configuration file, make sure the name is correct and the connection string settings are present in the configuration file of your application.
------------- InnerException -------------
Format of the initialization string does not conform to specification starting at index 0.

I copied the connection string from the app.config of the class library to my asp.net app's web.config, still no dice.  Same error.  Any help would be greatly appreciated.
headPropellerHead
Top achievements
Rank 1
 answered on 21 Jun 2018
6 answers
2.9K+ views

I have created one report in standalone report designer (Report.trdp), using object data source (my custom CLR type). It´s possible to programmatically load the report file and set the data source like a report created in Visual Studio (Report.cs)?

 

Idea of code:

Report reportFromFile = new Report(@"c:\temp\Report.trdp");
reportFromFile.DataSource = _repository.Query().ToList();

 

Regards,

André

ivan
Top achievements
Rank 1
 answered on 21 Jun 2018
1 answer
74 views

Hi,

Cam Anyone please give me code example on how to assign report to HTML5 report viewerin ASP.Net.

For example, report1.trdp, i want to assign it to reportviewer1 in asp.net. And if possible how to also assign data source to report1.trdb.

Please help on this.

Many thanks,

Omar

Nasko
Telerik team
 answered on 20 Jun 2018
3 answers
152 views

I have a map which I need to put points very close to each other. The distance from each other should be less than 1 meter. The points must also overlap each other. However, I'm facing an issue which I cannot find a good logic on how it works. 

The attached picture consists of 10 points with the same longitude, but only different latitude. Each has unique Id field. To each point has been added 0.0001 latitude (which translates as roughly 1.12meters). My issue is that points 1,2,5,6,9,10 look great. However 3,4 and 7,8 are grouped/combined/on top of each other. How is it determined which to group and how?

A little bit more relevant information:

I'm using PointMapSeries. 
MarketMaxSize, MarketMinSize, MarketSize is set to 1mm/1px
The seriesGroups groups by Fields.Id and so does the geoLocationGroup.
My dataclass has only Lat, Long & id.

I can provide more information if needed.

Ivan Hristov
Telerik team
 answered on 20 Jun 2018
0 answers
354 views

Hello,

I have a text box on a form that I want to show when either or both of two conditions are true or selected in the UI. Visible is set to false.

Basically, when CustAcctHold is checked in the UI, I want to show the HOLD text box.

Also, if CustAcctTerms is set in the UI to HOLD, I want to show the HOLD text box.

I have tried  = IsNull(Fields.CustAcctHold.Ticks, 0) with Operator = and Value 1 which I found on another thread, still did not work. Also tried, = IIf(IsNull(Fields.CustAcctHold, 0)= 0, 0,1)

 

I cannot figure out a string an expression that will make this work. Any help would be greatly appreciated!



 

Ryan
Top achievements
Rank 1
 asked on 18 Jun 2018
3 answers
716 views

Hi,

I'm using Telerik Reporting Tools version 3.44.1.0 on Visual Studio 2017.

I converted a few of my report parameter data sources from Current Data Sources to Report Data Sources by creating a class as described here (these are data sources that'll be used across multiple reports):

https://docs.telerik.com/reporting/data-source-how-to-add-project-data-source.

I used the Wizard to create the data source and the query works within the Wizard, but once I try to open the report I get the "ConnectionString property has not been initialized" error message.

I've verified the connection string is present in the app.config and I was using the same connection string within the Current Data Sources.

Example below:

namespace ReportLibrary
{
    public partial class ExchangeDateDataSource : Telerik.Reporting.SqlDataSource
    {
        private void InitializeComponent()
        {
            // 
            // ExchangeDateDataSource
            // 
            this.ConnectionString = "Reports.Properties.Settings.IOConnection";
            this.SelectCommand = "dbo.uspSelectExchangeRatesLkUp";
            this.SelectCommandType = Telerik.Reporting.SqlDataSourceCommandType.StoredProcedure;

        }
    }
}

Anything I'm doing wrong? Thanks.

Todor
Telerik team
 answered on 18 Jun 2018
4 answers
398 views
For the application we're currently developing we'd like to use the Telerik Reporting.These last days I was testing it and how well it would suit our needs. Our application is running in WPF on .NET 4.0 and has its own look and feel. Now I was searching your forum on how to apply changes to the ReportViewer class and I came to know that you have to change the style of the ReportViewer itself, which wouldn't be a big deal. Since our application has its own Ribbonbar, we wanted to remove the Toolbar from the ReportViewer and integrate it into our application. Now I've figured out that the ReportViewer has no commands which support the functionality identical to those of the integrated Toolbar. On the forum you could find out that the ReportViewer was implemented using the MVVM-pattern.
So I'd like to know if there is a way to accomplish the needed task? Am I able to access the commands of the ReportViewerModel from ReportViewer (e.g. MoveToNextPageCommand, etc.) or do I have to write my own UserControl that has a ViewModel inheriting from ReportViewerModel?
An answer to this cause would be appreciated.

Regards
Alen
Todor
Telerik team
 answered on 18 Jun 2018
3 answers
81 views

I find the ability to create user functions so that the users of the designer can insert domain related content. However, there are some places where I would like to help them insert objects other than text.

Is it possible to provide a function that would return, say, a shape or other visual element?

Ivan Hristov
Telerik team
 answered on 15 Jun 2018
1 answer
576 views

Is it possible to access values that a sub report has within the parent report?

Example: My sub report query will return a calculated value (lets say I have an expression in the sub report that is just "1+1"). Within the parent report, I would like to have an expression of ....IIF(subreport.field) = 2, "You picked the value of 2", "you did not pick the value of 2").

 

In crystal reports, you would create a global variable and that variable could be used within the entire report structure.

Is such a think possible in the standalone application?

I have found references to this ReportItem.Report.ItemDefinition.MyFunction(args) but it does not really explain or show what it does.

Brian

Nasko
Telerik team
 answered on 15 Jun 2018
3 answers
967 views
hi,
I'm using Telerik report table to display more than 500 rows of data (may vary) but I was unable to provide pagination to the table. 
Can you suggest an example or a way to implement it or where to find the pagination in Telerik report table wizard?
Rick
Telerik team
 answered on 14 Jun 2018
Top users last month
Edmond
Top achievements
Rank 1
Iron
fabrizio
Top achievements
Rank 2
Iron
Veteran
RobMarz
Top achievements
Rank 2
Iron
Fakhrul
Top achievements
Rank 1
Iron
Tejas
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?