Telerik Forums
Reporting Forum
1 answer
198 views

We have a web page in our application that displays an instance of the ReportViewer control.

We are displaying the standard Telerik parameter selection box to the user.  If the report we are displaying has data-driven multiselect parameters, we have noticed that, after the postback completes to load the parameter list, the parameters box goes blank.  Resizing the browser window makes the parameter box visible again.  This problem is only reproducible in Chrome.  No such problem occurs when displaying the same page in Firefox.

Is there any known issue with Chrome and parameter selection with the ReportViewer control.  I couldn't find anything in the forum.

 Thanks

 

Paul Marfleet

Nasko
Telerik team
 answered on 05 Jun 2015
3 answers
437 views
Hello Telerik,

We've managed to setup the HTML5 report viewer, it's passing parameters, reports are loading and returning data. I've attached 2 screenshots that show the network sources all load correctly and that the export menu is populated. Everything works except the Toolbar Buttons. Any idea what it might be?

Thanks,
Greg
Stef
Telerik team
 answered on 05 Jun 2015
6 answers
224 views

Hi guys, I have an asp.net mvc application and we are using the telerik reporting for html5. 

 We have some old applications using the v8 of Telerik Reporting for Html5 and it is working fine. So, in a new project we updated to v9 (9.0.15.324) and when we render a ReportViewer, the toolbar buttons does not work properly. We can export and page manually (typing the number of the page and pressing <enter> key), but buttons like "first", "previous", "next", "last", "zoom in", "zoom out",  "filter", etc... does not work. all javascript and css files for reportViewer are included on page and the render is ok, but the toolbar not.

 I tried to check the the console of the browser but when we click on a toolbar's button, there is no message on the console. I also tried to add the following module on the web.config as this thread, but it didn't work.

 <modules>
  <remove name="UrlRoutingModule-4.0" />  
  <add name="UrlRoutingModule-4.0" type="System.Web.Routing.UrlRoutingModule" preCondition="" />  
</modules>

 

Is there something I can try to make it work?

If there is no solution, we will back to v8.

 

Nasko
Telerik team
 answered on 05 Jun 2015
1 answer
186 views

I have three levels of classes to create a large number or reports.

 A. Base Class - Contains page header and footer information (company name, pages, etc)

 B. "Group Class" - Here I want to put Column headings text boxes and detail lines text boxes.

 C. "Data Class" - Here I want to put the code to pull the data and assign values to the column header text boxes and detail line text boxes in Class B above.

 

Question:  Lets say the header and detail box for column1 in my report is going to be Employee Number on my new report (of class C).  How, in class C code, can I assign literal constants to the header text box and a data table column to the first detail box?

 

I am trying to create a Class B where I have maybe 8-10 columns that I can always use the same layout while changing the data on the report in each instance of Class C.  I hope I made this clear enough, ugh.

 

 

 

 

Stef
Telerik team
 answered on 05 Jun 2015
5 answers
746 views
I have a report that has two subreports aligned side by side. I need to make both subreports have the same height, preferentially, that they occupy the complete detail, until pagefooter's start, so, even if there aren't enough items in the subreport, the lines must reach the footer.
The subreports have different tops, so I can't set the exact same height for both.
 
To guarantee that the subreport header is shown on every page, I've inserted a subreport inside the subreport. Furthermore, I've added a panel in the detail of the subreport that has the column's header and I've inserted the nested subreport inside this panel. The panel also contains a shape component of vertical line type, because, as I have said, I wanted to make the margins of the subreport and its columns to grow on every page until they reach the footer.
 
Attached there are two prints of the desired layout.

Is there a simple way of doing that?
Would you, please, send me a sample code of how this could be done?
 
Best regards.
Stef
Telerik team
 answered on 05 Jun 2015
1 answer
85 views

Hi,

 I'm trying to use the HTML5 Report View Widget with the Report Server in Eclipse.  

 Below is my configuration of the widget. When the page is run, it gets the client id, but fails on trying to get the parameters. I get the error: Unable to get report parameters:
Report 'ReportTemplate.trdx' cannot be resolved.

How should I specify the report source so that I can access it outside of the telerikreportserver application?

 I think my problem boils down to I need to use a report template from ReportServer for the report parameter in reportSource.  I have a template successfully loaded into the ReportServer that I can view, I just want to access it with the javascript in my Report Viewer widget.  Could it simply be a problem with the file path I'm using or are there more steps involved? 

serviceUrl: "http://localhost/telerikreportserver/api/reports/",

templateUrl: 'telerikReportViewerTemplate-9.0.15.324.html',
reportSource: {
}

Stef
Telerik team
 answered on 04 Jun 2015
3 answers
306 views

Hi,

 I'm trying to use the HTML5 Report View Widget outside of the Report Server Application.

Below is my configuration of the widget. When the page is run, it gets the client id, but fails on trying to get the parameters. I get the error: Unable to get report parameters:
Report 'ReportTemplate.trdx' cannot be resolved.

How should I specify the report source so that I can access it outside of the telerikreportserver application?

Thanks!

templateUrl: 'telerikReportViewerTemplate-9.0.15.324.html',
reportSource: {
   report: "ReportTemplate.trdx",
}

Stef
Telerik team
 answered on 04 Jun 2015
1 answer
102 views

Hi,

I using 8.2.14.1204 to create reports that displays data in pie charts. If there are lots of thin wedges, the labels over lap. see attached.

Is there anything I can set to prevent this?

 TIA 

 Matt

Stef
Telerik team
 answered on 04 Jun 2015
2 answers
173 views

Hi guys, 

I know this has been asked in different ways before but what I'm looking to do is dynamically assign a reports datasource at runtime. Within this report will be a subreport, generated for every record of the datasource.

So my example would be by having a absence report for employees. The parent report will be bound to a list of employee object, in which there will a list of absences of type absences. This list is what I want to bind to a sub report. (see code below)

I've been going through a couple of other similar question on here and trying to figure out the best way.  

What I have is a sub report with the bindings 

Property Path                        Expression

DataSource                            =ReportItem.Absences

I found the documentation a little unclear in what is the datasource is and what is the properties being displayed. So any and all help is greatly appreciated.

 

public Class Employee{
public string EmployeeName {get; set;}
public string EmployeeNumber {get; set;}
public List<Absence> Absences {get; set;}
}
 
public Class Absence{
public DateTime AbsenceDateFrom{get;set;}
public DateTime AbsenceDateTo{get;set;}
public string AbsenceReason{get;set;}
}

Will
Top achievements
Rank 1
 answered on 04 Jun 2015
4 answers
136 views

The documentation for reporting helps you to configure reports for MVC 4. Will someone give me instructions for setting up my MVC 5 project. I tried following the instruction for MVC 4 but am getting reference errors for assemblies that are not defined.

 

Thanks in advance.

Stef
Telerik team
 answered on 04 Jun 2015
Top users last month
Cynthia
Top achievements
Rank 1
Iron
Toby
Top achievements
Rank 3
Iron
Iron
Iron
Danielle
Top achievements
Rank 1
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Iron
yw
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?