Telerik Forums
Reporting Forum
0 answers
49 views
Hi,

I need to show summary information in tabular form in Report Header. I get the summary info from database query.
What is the best way of accomplishing this task? Do i need to use a Table control?

Thanks.
Srinath.
Srinath
Top achievements
Rank 1
 asked on 10 Jul 2012
1 answer
40 views
Hi,

I need to use the list in a way it may have not been designed for. I thought I will ask this question to see if this is possible. If not, I will look into other avenues.

I need to display of List of items(say pictureboxes) but want them all the in the same row. Each of those picturebox's Left property would be set in a such a way that they don't overlap each other.  I have tried setting Top properties of the picturebox, the panel that gets added by default to the list with no luck. 

Telerik gurus, look forward to your advise!

Thanks in advance
Neelima
Elian
Telerik team
 answered on 10 Jul 2012
1 answer
99 views
When i try to access Report Explorer from Telerik Reporting Menu, The elements are not shown.
I just get a blank window. Is this to do with some settings?

Thanks.
Srinath.
Steve
Telerik team
 answered on 10 Jul 2012
8 answers
718 views
Hi;

I'm new to Telerik reporting and would like to ask a question. I have a report that will paginate horizontally. To clarify - there will be more columns that can fit on a single page. This report will also contain 2 columns that are required to display on each page. So - the report will have the following - 2 columns (displayed on the left side) - that will show on every page. 1 or more columns that will be displayed to the right of the first 2 columns - and these columns may require horizontal pagination.

What I would like to know is how to configure a Telerik Report to operate like this. I was thinking using multiple groups - but I've found that groups will be displayed sequentially on the report - and I do not know how to get groups to to disaply beside each other. I looked at the table item and it looks like it is suppose to handle horizontal paging - but I need some way to set the table to repeat columns on a page. Or find another way to do this part.
Peter
Peter
Top achievements
Rank 1
 answered on 09 Jul 2012
6 answers
1.3K+ views
Am designing a report for a web application and there is a need to center (horizontally) the web report viewer. I have tried all I can but it refuses to center align. Please, any ideas how to get this done?
Michael
Top achievements
Rank 1
 answered on 09 Jul 2012
3 answers
225 views
Hello,

I have a subreport that lists items and in some cases an item may have a remark or comment. The problem im having is that if there is no remark I set the visibility to false, however the space where the text is remains. How can I resolve this?

CURRENT OUTPUT:
    GROUP HEADER
        Item1

        Item2
            remark
        Item3

        Item4

DESIRED OUTPUT:
    GROUP HEADER
        Item1
        Item2
            remark
        Item3
        Item4

Thanks
David A.
Top achievements
Rank 1
 answered on 08 Jul 2012
0 answers
96 views
Hi, I'm a senior .net mvc freelancer.  I've got a contract I'm trying to wrap up and suspect telerik reporting will help me knockout the 10 reports I have left.

The thing is, I've never used it before.  I've just spent about 3 hours playing around with it and am sure I can handle it but I know from experience it will be 10 times faster with a partner with experience. 

So, if you know how to implement reporting over entity framework code first and .net mvc4, I could sure use an hour of remote pair programming!  Of course, I'm willing to pay.  Let me know what you think is fair. - (danschlossberg at  really_big_search_engine_mail.com)

I've attached relevant data model and wireframe of one report.  I can't imagine that anyone would be able to understand how to map it without a detailed conversation.  There are several pivots and intermediary calculations required. 

Oh, maybe the following linq statement will help. :)

var data = from week in base.Db.WeeklyInputs
                 where week.FranchiseId == franchiseId && week.Year == year
                 select new
                   {
                     week.FranchiseId,
                     week.WeekEnding,
                     week.CleaningWages,
                     week.BonusWages,
                     week.TotalMaidsAbsent,
                     week.TotalMaidsScheduled,
                     week.MaidTurnover,
                     week.TotalMaidMinutes,
                     week.AverageTeamSize,
                     week.TravelTime,
                     week.QualityCardsReturned,
                     week.QualityCardPoints,
                     Cancels = week.CustomerCancellations,
                     Name = week.Franchise.Title,
                     TotalRev = week.WeeklySalesByLocation.Sum(sales => sales.Sales),
                     TotalUnitsCleaned = week.WeeklySalesByLocation.Sum(s => s.UnitsCleaned),
 
                     AverageQualityPoints = week.QualityCardsReturned == 0
                                              ? 0
                                              : week.QualityCardPoints/week.QualityCardsReturned,
                     AverageHourlyWage = week.TotalMaidMinutes == 0
                                           ? 0
                                           : (week.CleaningWages)*60/(week.TotalMaidMinutes),
 
                     RegularRev = week.WeeklySalesByLocation
                   .Where(s => s.LocationType == "Regular").Sum(sales => sales.Sales),
                     FirstRev = week.WeeklySalesByLocation
                   .Where(s => s.LocationType == "FirstEntry").Sum(sales => sales.Sales),
                     OnCallRev = week.WeeklySalesByLocation
                   .Where(s => s.LocationType == "OnCall").Sum(sales => sales.Sales),
                     CommercialRev = week.WeeklySalesByLocation
                   .Where(s => s.LocationType == "Commercial").Sum(sales => sales.Sales),
                     Conversions = week.MarketingExpenses
                   .Sum(marketing => marketing.Conversions),
 
                     Locations = week.WeeklySalesByLocation
                   .Select(l => new
                     {
                       l.Sales,
                       l.LocationType,
                       l.UnitsCleaned,
                       l.TeamMinutes,
                       l.MaidMinutes,
                       AverageSale = l.UnitsCleaned == 0 ? 0 : l.Sales/l.UnitsCleaned,
                       AverageTime = l.UnitsCleaned == 0 ? 0 : l.MaidMinutes/l.UnitsCleaned,
                       AverageRevPerMaidHour = l.MaidMinutes == 0 ? 0 : (l.Sales/l.MaidMinutes)*60
                     }),
 
 
                     AverageRevenuePerInHomeMaidHour =
                   (week.TotalMaidMinutes + (week.TravelTime*week.AverageTeamSize)) == 0
                     ? 0
                     : week.WeeklySalesByLocation.Sum(sales => sales.Sales)/
                       (week.TotalMaidMinutes + (week.TravelTime*week.AverageTeamSize))*60
                   };


hmmm...  I didn't think so....

Anxiously awaiting your email...
Dan
Daniel
Top achievements
Rank 1
 asked on 07 Jul 2012
3 answers
160 views
I am trying to assign a report to the report viewer in the code-behind as described in this link: http://www.telerik.com/help/reporting/aspnetreportviewerembedding.html

It looks like this doesn't work if the report viewer is inside an UpdatePanel. Is there any way to make this work?
Michael
Top achievements
Rank 1
 answered on 06 Jul 2012
3 answers
158 views
Hi,

When i try to view the Telerik Report in Report Viewer it is not properly aligned to the browser.
This happens when i use the report in Aspx web form as well as MVC application.
I want the report to be alinged to the browser.

Also how can i attach screen shots, when i post my question?

Thanks.
Srinath.
Steve
Telerik team
 answered on 06 Jul 2012
4 answers
349 views
Hello,

is it possible to use the reporting service only for creating a PDF file directly without showing the the report in a viewer?

In the moment the report ist only shown in a Silverlight viewer.
But now I have the requirement to create the report on the server and sent the report directly as a PDF file via Email to the customers.

Regards
Dirk
Dirk
Top achievements
Rank 1
Iron
 answered on 05 Jul 2012
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?