Telerik Forums
Reporting Forum
4 answers
155 views
I have a reportbook containing 150+ reports.  I'm looking for a way to add in a blank page on reports with an odd number of pages so that a report does not start on the back of a previous report when printing duplex.

Thanks,
   Wayne

Stef
Telerik team
 answered on 14 Aug 2013
1 answer
210 views
Hello,
  
We are trying to keep first group header and detail together on every page. It works when we set,
reportGroup.GroupKeepTogether = GroupKeepTogether.All;
But following is not working,
reportGroup.GroupKeepTogether = GroupKeepTogether.FirstDetail;
  
Please help.
  
Regards,
Manish
IvanY
Telerik team
 answered on 14 Aug 2013
7 answers
240 views
I have built a generalized report viewer page, with up to 50 potential reports to select from, depending on the context.

I realize that each report is a "class" and therefore you cannot just treat it like you would assign a value to a parameter.

But I'm wondering if there is a way to replace this select and the hard-coding of the report classes, into something more dynamic.

I've tried to move the SQL setup outside the case logic, reducing the repeated lines by half, but the report object loses scope outside the case statement, and the compiler balks.

I've seen another thread that does something similar with C, but I don't know enough to translate it into VB. (VS2010)

Select Case Me.Report_Selection_Combo.SelectedValue
    Case "publication_summary_report"
        Dim report1 As New Publication_Summary_Report
        ReportViewer1.Report = report1
        Dim sqlDataSource1 As Telerik.Reporting.SqlDataSource = DirectCast(report1.DataSource, Telerik.Reporting.SqlDataSource)
        sqlDataSource1.SelectCommand = StrConv(HttpContext.Current.Session("sql_select"), VbStrConv.Lowercase)
          
    Case "publication_standard_report"
        Dim report1 As New Publication_Standard_Report
        ReportViewer1.Report = report1
        Dim sqlDataSource1 As Telerik.Reporting.SqlDataSource = DirectCast(report1.DataSource, Telerik.Reporting.SqlDataSource)
        sqlDataSource1.SelectCommand = StrConv(HttpContext.Current.Session("sql_select"), VbStrConv.Lowercase)
    Case "publication_catalog_report"
        Dim report1 As New Publication_Catalog_Report
        ReportViewer1.Report = report1


line 2
Rielly
Top achievements
Rank 1
 answered on 13 Aug 2013
3 answers
147 views
Hello all,

I am trying to put a table in my detail section that would have a separate data source. I would like to know if it is possible to filter the records in the table by a unique set of keys from the Fields in my detail section (which has a separate data source). If this is possible I would appreciate any advice on how this would be done.

Thanks
Zack
Top achievements
Rank 1
 answered on 13 Aug 2013
3 answers
165 views
Hello Telerik,
I am working with Telerik Reporting Q1 2013 in VS 2012.
The last year I successfully build a lot of reports (free format , tables, crosstables, etc.) but now I am very disappointed and desperate in creating reports with some nice charts. The requirement is to build a chart like figure 1 (see attachment). I was not lucky either using Charts nor Graphs.
I followed the instructions of the tutorial "Product Line Sales Video" which really is not very helpful, because it takes a lot of time in styling any report headers and fading out when details of the charts are to be set.
Here some detail questions:
1. What is better to use Charts or Graphs?
2. Why do I get this error in the Chart: the type of column with Name ANZ_MONTAGEN is not numeric (this field is numeric!)
3. in the Chart: how can I show the countries in the legend instead of "Series 1" ?
4. how can the legend be sorted by top 10 amount desc?
5. how can the pie label be shown in percentage?
6. how can I show the top 10 amount and additionally other amounts (the rest)?
7. is it possible to build charts or graphs in 3D?

It would be great to get some help.
Thanks
Irmgard
Stef
Telerik team
 answered on 13 Aug 2013
1 answer
69 views
I am quite new to the entity frame work my context has created the following for me  and i am trying to retrieve the values from the following to tables as well AppraisalReadiness  and AppraisalTalentRating which are both lookup tables with the descriptions in them and a code my question is using the query below how to add the reference in for the above to table but still having it return a list.

   public List<appraisal> GetAppraisal(int employeeId)
        {
            List<appraisal> Appraisals = new List<appraisal>();

            try
            {

                Appraisals = pamsEntities.appraisals.Where(a => a.emp_no == employeeId).ToList();
            }
            catch (Exception ex)
            {
                throw new EntityContextException("GetAppraisal failed.", ex);
            }


            return Appraisals;
        }
IvanY
Telerik team
 answered on 13 Aug 2013
1 answer
141 views
Is there a way to display category labels on a pie graph?  I wanted to create a pie with a category of Year (for example).  The pie gets generated with a layer for each year, but it doesn't say which is which.  There is a label property for category groups, but doesn't seem to do anything. 

IvanY
Telerik team
 answered on 13 Aug 2013
1 answer
204 views

Hello,

I'm updating a telerik TableCell with a C# data array (double[][]), and by now I'm updating the cells in the table by cell (for each cell in tablecell).

I would like to do on of this other options:

1. access a range of a row (subset) and set it with a list or array of the same length
2. access a row and set to a list or array.
3. access each cell element by asking for it by row & col in the table and set the value on the element
       
Is there any possibilities?

Thanks.
IvanY
Telerik team
 answered on 13 Aug 2013
0 answers
78 views
No longer need help. Thanks
Zack
Top achievements
Rank 1
 asked on 12 Aug 2013
10 answers
371 views
Hello, I need to handle the click event on TextBox in rendered report. Can I do that and how?
Thanks for help
Unknown
Top achievements
Rank 1
 answered on 12 Aug 2013
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
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?