Telerik Forums
Reporting Forum
3 answers
119 views
I'm current creating a test report follow the tutorial http://www.youtube.com/watch?v=t-iA05KpDFM .
After I put report partial view to in index.cshtml, it generated report, but the controls of report become very big.
I'm new in MS MVC. Anyone has any solutions?
Stef
Telerik team
 answered on 25 Sep 2013
1 answer
104 views
I have a report set up with columns representing dates. I want a conditional formating on these column to "grey out" holidays or dates that we are not opened. Those dates are in a SQL table. I have created a second DataSource that successfully gets a list of the closed dates, but I have no clue how (or if it's possible) to access that list of dates within the conditional formating expression.

I do know that I could make a custom function to return that list of dates, but I am using the standalone design and would like to keep it that way. We use express versions of Visual Studio and even if getting a full version is a possibility, I am curently evaluating this reporting service in terms of features vs price. Requiring a full version of Visual Studio greatly affects this ratio.
Steve
Top achievements
Rank 2
 answered on 24 Sep 2013
1 answer
923 views
I am currently testing out Telerik Reporting. I have a trial version of Visual Studio to test the integrated designer but I would like to do without it using with standalone report designer. I have managed to do the operations I wanted after learning I had to cast my report parameter and the AddDays parameter :

= CDate(Parameters.date.Value).AddDays(CDbl(6))

My next requirement was to convert a DateTime into a 1 letter day of week. Simple formatting would not allow me to do this. The further I could go was an abbreviation of the day of the week (thu. for example). What I needed was "T", "M", etc.

AddDays looked very familiar... so I tried adding .DayOfWeek. Result:

= Substr(CStr(CDate(Parameters.date.Value).AddDays(CDbl(6)).DayOfWeek), 0, 1)

This worked, almost. The result is indeed what I expected, with the exception that it does not globalize to French like a simple format would.

How can I get the 1st letter of the DayOfWeek in French without using Visual Studio integrated designer?
Steve
Top achievements
Rank 2
 answered on 24 Sep 2013
2 answers
134 views
Hello,

the roadmap for Telerik Reporting Q2 2013 includes a new HTML5/Ajax based report viewer.
Will it support animations and mouse over effects like the Kendo UI DataViz charts?

Greetings,
Sebastian
Stef
Telerik team
 answered on 24 Sep 2013
6 answers
563 views
Hai Can u send me a sample Example  for Report viewer in MVC 4
Stef
Telerik team
 answered on 24 Sep 2013
1 answer
182 views
Hey guys and gals.

Trying to make some use of the Telerik ReportViewer, and everything seems to work as intended, if we are running it in Chrome or Firefox, but if we're trying to run it in IE, the ReportViewer just doesn't show the report at all.

We tried to remove the doctype, just as a temporary solution, but then all the content on the site looks kinda weird, except for the ReportViewer.

We have tried to give it a fixed height and width, and in percent, but it gives us the same result, and after searching across the interweb, it looks like a lot of people had the same problem, but that it should have been fixed in the Q1 2013, and we're running Q2 2013.

Here's our current markup:
<div style="width: 100%; height: 100%;">
    <div id="divDisable" style="width: 100%;
        height: 100%; z-index: 10000; background: #000000; opacity:0.15;
        filter:alpha(opacity=15); position: absolute;" runat="server">
    </div>
    <div>
        <telerik:ReportViewer id="ExampleReportViewer" Width="100%" Height="100%"
        ShowHistoryButtons="False" ShowPrintButton="False"
        ShowPrintPreviewButton="False" runat="server"></telerik:ReportViewer>
    </div>
</div>
Nasko
Telerik team
 answered on 24 Sep 2013
3 answers
355 views
We are looking for a reporting solution that will easily work with our existing read architecture. All of our read queries are returned from Query handler with an interface 
IQueryHandler<TQuery, TResult>

TQuery is a query with various parameters e.g. Employee Type etc
TResult is in most cases IEnumerable<T> E.g. we could have a person query whose return type is IEnumerable<Person>.

These queries are custom projections with various business logic in them so we can't go direct to the database.  

Can Telerik reporting easily be used to create reports and bind to a result type of IEnumerable<T>? We don't want to bind to something which implements IEnumerable<T> we want to bind something which is a IEnumerable<T>. We would like the report to be able to pass parameters which we could use to populate our Query object.

Also when is Telerik Reporting Q3 release estimated to be out? We want to use it in an MVC app (which I appreciate older versions can be) but it sounds a better experience in the next release

Any advice would be appreciated
Nasko
Telerik team
 answered on 23 Sep 2013
2 answers
339 views
So I was working on my project in TFS last night. We are rebuilding reporting using Rad Reporting tools. Everything was working fine and when I log on this morning to work on my project, It seems that I can run the project in a design view any more? I have attached two pictures of the files and how they have changed and what a normal set up looks like. I am not sure for what reason I cant run a Design view on my project any more.
 

Any help would be appreciate, If you need any form of code to help troubleshoot let me know.


Edit: So it looks like the project screws up when I change the workspace in TFS to Local to Server - Not sure if that means anything to you guys but that is what is causing the error.
Wadigzon
Top achievements
Rank 1
 answered on 20 Sep 2013
1 answer
158 views
I've already checked out most of the online references regarding this problem, I'm using the latest version: Q2 2013 SP1. I'm running .NET 4.0

As described in the title, the Report is rendering on Locahost but not on the server. And I noticed that that's only happening in IE (I tried IE 10)

Note that I'm using RadWindow to host the ReportViewer

I already registered the following in Web.config:

<configSections>
    <section name="Telerik.Reporting" type="Telerik.Reporting.Processing.Config.ReportingConfigurationSection, Telerik.Reporting,       Version=7.1.13.802, Culture=neutral, PublicKeyToken=a9d7983dfcc261be" allowLocation="true" allowDefinition="Everywhere" />
</configSections>
 
<controls>
    <add tagPrefix="TelerikReportViewer" assembly="Telerik.ReportViewer.WebForms, Version=7.1.13.802, Culture=neutral, PublicKeyToken=a9d7983dfcc261be" namespace="Telerik.ReportViewer.WebForms" />
    <add tagPrefix="CR" assembly="CrystalDecisions.Web, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" namespace="CrystalDecisions.Web" />
</controls>
 
<httpHandlers>
    <add type="Telerik.ReportViewer.WebForms.HttpHandler, Telerik.ReportViewer.WebForms, Version=7.1.13.802, Culture=neutral, PublicKeyToken=a9d7983dfcc261be" path="Telerik.ReportViewer.axd" verb="*" />
</httpHandlers>
 
<system.webServer>
    <handlers accessPolicy="Read, Execute, Script">
        <add name="Telerik.ReportViewer.axd_*" type="Telerik.ReportViewer.WebForms.HttpHandler, Telerik.ReportViewer.WebForms, Version=7.1.13.802, Culture=neutral, PublicKeyToken=a9d7983dfcc261be" path="Telerik.ReportViewer.axd" verb="*" preCondition="integratedMode" />
    </handlers>
</system.webServer>

with no luck so far.

Thanks,
Stef
Telerik team
 answered on 20 Sep 2013
1 answer
241 views
I have this picturebox object picLogo in design mode (pbdesign.jpg)
its Size property is 312px, 67px, its Sizing is set to ScaleProportional

this is how I load a small bmp (24x26) into the picturebox in the code behind:

var bm = new System.Drawing.Bitmap("\\Logos\Image.bmp");
picLogo.Value = bm;

The result can be seen at pbrunning.jpg

As you can see the small bmp is LEFT justified in the space provided for the picturebox object.

is there any way to RIGHT justify this small bmp?
Stef
Telerik team
 answered on 20 Sep 2013
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?