Telerik Forums
Reporting Forum
1 answer
93 views
Hi,

I'm evaluating the Telerik Reporting and was wondering if there was a UI or property in the Telerik Report Designer that can make a few columns of a table uneditable while the rest contains radio buttons that can be selected by the user.  Is this possible?  If so, can you please point me to the right tutorial?  Because I was able to achieve this via Microsoft Word 2013 using their Content Controls.  I have recreated the same report via Telerik Report Designer and exported it to a Word Document but the radio buttons are displayed as images.  Is there a way to render this usable to the user?

Any help is appreciated.

Joanna
Nasko
Telerik team
 answered on 22 May 2014
1 answer
175 views
What I would like to know is how can I use the NavigatetoUrl Action and pass in the correct parameters so that for instance in the attached graph I would want to be able to click on Red Series for Mar, and pass these parameters to another report. (i.e. reportdetail.aspx?Status=Red&Month=03&Year=2014) 

Previously I would have used the click event of the chart item to do this, but using the new Graph object I cannot see how to achieve this.

Any help or suggestions would be much appreciated.

Thanks

Greg
Stef
Telerik team
 answered on 22 May 2014
1 answer
93 views
I have upgraded my Reporting version from Version 7.1.13.612  to Version 7.2.14.127 and now my Y-Axis labels are a month behind?

May data has a Apr label?
Apr data has a Mar label?

This appears to be a bug in the version... is there anyway I can fix it? Code behind?

thanks
Ivan Hristov
Telerik team
 answered on 21 May 2014
1 answer
86 views
I inherited a VB.NET development effort from a rival company who did not supply any documentation.  It used Telerik.Web.UI version 2011.3.1305.40 and we purchased and installed the replacement version 2014.1.4013.40.  The newer version broke some of the web pages and reporting pages and we are trying to recover to a point where we can use the Telerik enhanced pages.  I manually stepped through the webpages that failed due to the upgrade and changed to old code to meet the new standards and managed to fix most of them.  The webpages that still don't work have broken smart tags that lost the databases they were linked to.

The reporting is another issue.  We did not get the source Telerik reports and I used the Telerik Reporting Q1 2014 tool to extract the Telerik report definition files from the DLLs of our site.  These are readable but not very usefull because they also are missing the links to their associated databases.  I was able to correctly link one of the reports to its correct database but now what?  I can't export it to a *.vb file to add to Microsoft Visual Studio 2013.  How would I return the reports to the VB Solution so they can replace the broken ones on my website?  Am I missing a tool?  We purchased the full license so if we are missing anything can you supply it?

Attached is a PDF generated from the failing Telerik reporting process from the VB.NET site.
Attached is the sample extracted Telerik report. 
Nasko
Telerik team
 answered on 20 May 2014
1 answer
441 views
Hi;

I new user in Telerik. I prepaire a report page in mvc5 with web API.  I complete these steps but. cant see my report browser:

http://blogs.telerik.com/blogs/13-12-12/establishing-a-telerik-restful-reporting-service-in-under-5-minutes

my default connection:   
  <add name="Telerik.Reporting.Examples.CSharp.Properties.Settings.TelerikConnectionString" connectionString="Data Source=.;Initial Catalog=ModularicaDb;Integrated Security=SSPI" providerName="System.Data.SqlClient" />

My Database: SqlServer 2012 Database Name: ModularicaDb

http://blogs.telerik.com/careypayette/posts/14-01-06/consuming-telerik-rest-service-reports-in-asp.net-mvc-5

$("#reportViewer1")
        .telerik_ReportViewer({
            serviceUrl: "http://localhost:55098/api/reports/",
            templateUrl: '/ReportViewer/templates/telerikReportViewerTemplate.html',
            reportSource: {
                report: "as.trdx",
                parameters: {
                    ReportYear: "2003"
                }
            },
            viewMode: "ViewModes.INTERACTIVE",
            scaleMode: "ScaleModes.SPECIFIC",
            scale: "1.0"
        });



I can show my report on Report Designer StandAlone software but cant see on mvc project?

Regads...


Stef
Telerik team
 answered on 20 May 2014
1 answer
150 views
Telerik.Reporting 8.0.14.507 (Telerik.ReportViewer.Silverlight)

1. The popup window for exporting and printing is transparent (screen126)
2. No backlighting required parameters (screen127, screen128)

I have to roll over the older versions and wait for the update. Thanks for Reporting.
Stef
Telerik team
 answered on 20 May 2014
9 answers
378 views
Hello,

For a new project we are trying tu use the Telerik's ReportViewer control in SILVERLIGHT.
We are using RIA Services/Prism/MVVM/SILVERLIGHT for our project.
ReportViewer is working fine but we needs some parameters in the report to be initialized by user input in the view.
So we need the RenderBegin method to be in the ViewModel and then we need to use a trigger in our view :
View :
<telerik:ReportViewer 
Height="400"
Margin="0,10,0,0"
Visibility="{Binding ViewModel.ReportVisibility, Source={StaticResource ListViewModel}}"
ReportServiceUri="../ReportService.svc"
Report="Jet2.Server.ReportLibrary.ReportTest, Jet2.Server.ReportLibrary, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null"
ZoomMode="PageWidth">
    <interactivity:Interaction.Triggers>
        <interactivity:EventTrigger EventName="RenderBegin">
            <infrastructureCommands:InvokeDelegateCommandAction Command="{Binding ViewModel.RenderBeginCommand, Source={StaticResource ListViewModel}}"                                                           CommandParameter="{Binding RelativeSource={RelativeSource Self}, Path=InvokeParameter}" />
        </interactivity:EventTrigger>
    </interactivity:Interaction.Triggers>
</telerik:ReportViewer>
ListViewModel comes from a ViewModelHelper, and Interactivity from System.Windows.Interactivity

The ViewModel:
//The Command
public DelegateCommand<RenderBeginEventArgs> RenderBeginCommand { get; private set; }
  
//In the ViewModel Constructor:
this.RenderBeginCommand = new DelegateCommand<RenderBeginEventArgs>(this.BeginRenderReport);
  
//The RenderBegin Method:
private void BeginRenderReport(RenderBeginEventArgs rbea)
{
    rbea.ParameterValues["CompanyId"] = this.CurrentCompany.Id;
}

With all this code, the RenderBegin Method is not called... So, does the interactivity trigger and the renderbegin method can work together ?
We can't use reportviewer without parameters in our report...

Thanks for your help.

FYI: Triggers are working fine in all of our project, for button events or combobox event or dataform events...
Rob Ainscough
Top achievements
Rank 1
 answered on 19 May 2014
1 answer
112 views
I'm building a report that uses a subreport in the report header.  This subreport will only occasionally contain data, so I have used this link to help me hide the subreport when it has no data, and this works fine.  However, I also want to force the subreport to be on its own page when it is visible, but I can't figure out the appropriate binding to make this happen. 

For the reportHeader section (that contains the subreport), I already have the following binding:

Property Path: Height
Expression:  = "1px"

I want to add

Property Path: PageBreak
Expression:  = IIF(???, PageBreak.After, PageBreak.None)

I tried  setting ??? to ReportItem.Height > "1px", but that caused error "Cannot perform '>' on Telerik.Reporting.Drawing.Unit and System.String.
I tried setting ??? to ReportItem.subreport2.Visible  that caused error object subreport2 not defined in the current context.

What is the correct binding code to detect if the subreport was visible or not?

Alternatively, in code I have tried

var rptBook = new ReportBook();
var rpt1 =
new MyReport1();
if (rpt1.Report.Visible) rptBook.Reports.Add(rpt1);
var rpt2 =
new MyReport2();
rptBook.Reports.Add(rpt2);

but this doesn't work, because the report hasn't executed when I test the Visible property.  Can I do something differently to make it work this way?

Thanks







Nasko
Telerik team
 answered on 19 May 2014
5 answers
86 views
I am trying to represent nested data in a report. The data structure just likes Master View and Detailed Tables in Radgrid.
Put simply,how to show the data in a report which has a relationship like Order and Order Details.
I've tried many ways to achieve it but never success.
I know how the demo Invoice works,but I can't modify it to achieve my goal.
I wish some one could help to get through this.
Thanks in advance.
Stef
Telerik team
 answered on 19 May 2014
5 answers
3.7K+ views
Hi..
     Sir now i had doubt in displaying 3 fields in a single text box., I am used can grow property also.,
but i didn't get a clear output.,i must need the line break keyword  like "/n" or some other//

Example :

             i need output as

                    Bill No,
                    Bill Name,
                    Narantion...
in a single textbox...
I want to break the line automatically when 1 field ends & the 2nd field must display in the new line..


or

Give any tips to decrease or increase the height of detail band in the run time..

Thanks

By
Suriya
Hinata
Top achievements
Rank 1
 answered on 19 May 2014
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?