Telerik Forums
Reporting Forum
1 answer
231 views
Hi,

I am evaluating Telerik Reporting tool Q2 2013.1 Trial version

I want to make connection with MySql Database version 5.5.27 but i am unable to see option MySqlConnection may you help on this part to clarify about it??

and also i need the .dll file of MySql.Data.dll version 0.0.0.0 and 1.0.7.30072
i need to download .net Connector with Telerik Repoorting tool version Q2 2013 for that i need dwonloading path'link' with MySql.Data.dll whichever version you are using for connector.net.



Thanks,
Stef
Telerik team
 answered on 31 Jul 2013
1 answer
107 views
Hello,

I have a problem with the ReportViewer toolbar in a DotNetNuke web application, both in Chrome and in IE 10. I am using Telerik Reporting trial version 7.1.13.612. I used the source code from the MVC tutorial. Image attached.
Any suggestions please?

Thanks
Przemek
Stef
Telerik team
 answered on 31 Jul 2013
1 answer
514 views
 dear team,
i'm trying to filter table pragmatically,
i use the below code and it is working only for equal to, how can i do the same for start with and contains operators because the below code not working for them.
do i miss something 
switch (Operator) {
                    case ("Contains"):
                        objFilter.Operator = Telerik.Reporting.FilterOperator.Like;
                        objFilter.Value = string.Format("%{0}%", FieldValue);
                        break;
                    case ("StartWith"):
                        objFilter.Operator = Telerik.Reporting.FilterOperator.Like;
                        objFilter.Value = string.Format("{0}%", FieldValue);
                        break;
                    case ("EqualTo"):
                        objFilter.Operator = Telerik.Reporting.FilterOperator.Equal;
                        objFilter.Value = string.Format("{0}", FieldValue);
                        break;
                    default:
                        objFilter.Operator = Telerik.Reporting.FilterOperator.Equal;
                        objFilter.Value = string.Format("{0}", FieldValue);
                        break;
                }
Elian
Telerik team
 answered on 31 Jul 2013
1 answer
122 views

Hi, I am new to Telerik Reporting. I used the Graph Wizard to create a clustered column graph and the labels are not aligning with the column clusters. When using a Stacked Column graph the labels would align with the columns and I did not have this problem. 


Images is attached. I have obfuscated the label names for privacy purposes 

Stef
Telerik team
 answered on 31 Jul 2013
1 answer
196 views
Hi All - 
I have a simple pie chart on a report that uses same datasource as the report. I can easily change the report datasource at runtime and all is well, but for some reason the chart throws the following (see attached). It works fine in preview in design mode, and all other reports I have bound with this method at runtime work perfectl. It is just adding the graph object I get this error. I have tried adding as subreport and just adding graph to report same issue -- it is loaded in the report footer. Here is the code I use to databind the report:

(NOTE: I am using a custom class and methods for getting data tables etc.. instantiated previously as db.)

                  Dim tbl As DataTable
                    tbl = db.GetDataTable("SELECT * FROM rpt_WholeProgram_Summary WHERE ProgramID = " & nProgramID)

                    Dim report1 As New BMETReports.WholeProgramSummary
                    report1.DataSource = tbl
       
                    '--------------- set Parameters -----------
                    'Get the Owner Name
                    Dim sOwnerName As String = db.GetSingleValue("SELECT IsNull(OwnerName,'owner name here') FROM Programs WHERE ProgramID = " & nProgramID)
                    report1.ReportParameters.Item("OwnerName").Value = sOwnerName
                     
                    Dim sSubtitle As String = txtSubTitle.Text
                    Dim sProgramName As String = txtProgramName.Text
                    Dim sDraft As String = " "
                    If chkMarkDraft.Checked Then
                        sDraft = "DRAFT"
                    End If
   
                    report1.ReportParameters.Item("ProgramName").Value = sProgramName
                    report1.ReportParameters.Item("SubTitle").Value = sSubtitle
                    report1.ReportParameters.Item("Draft").Value = sDraft
                    
                    '----------------------------------------------------
                        
                        
                    Dim instanceReportSource As New Telerik.Reporting.InstanceReportSource()
                    instanceReportSource.ReportDocument = report1
                    ReportViewer1.ReportSource = instanceReportSource


Steve
Top achievements
Rank 1
 answered on 30 Jul 2013
10 answers
1.5K+ views
I cannot figure out how to make the header rows of the new Telerik.Reporting.Table control repeat when the table has more rows than fit on one page?

I see my header on the page where the table first appears, but on subsequent pages only the data rows appear, not the header.

This is a very basic feature for tabular reporting.  Where are the properties to make this happen?

Hadib Ahmabi
Top achievements
Rank 1
 answered on 30 Jul 2013
5 answers
230 views
Hi Pals,

           I am getting problem with Telerik Sub report  problem in ASP.NET.
My Requirement is I need to pass the data to Main Report and Sub report From ASP.NET Webpage Code Be-hind Page.
right now I am passing the data to Main report from the code... need to pass data to sub report from the code itself.
Please help in this issue.

Thanks in advance.


Stef
Telerik team
 answered on 30 Jul 2013
1 answer
158 views
I have used information from a related question to develop a report that lists serial numbers in a multiple column format, as shown in the attached picture.  (I must use the crosstab instead of a multicolumn report because this will be a subreport.)

In the example in the attached output picture you can see that I want 4 columns of data, but I only have 10 items, so there are two empty slots.  If the 4th and 8th items shifted up a row, the order would be correct.  I have tried adding sorting to the groups, but it doesn't seem to help.

I have attached a picture of my report design, and my datasource is a simple query:
select serial_number, ROW_NUMBER() OVER(ORDER BY serial_number) as RowNum
from myTable
order by RowNum

What am I doing wrong?  How can I control the sorted order of the output?  I prefer to sort by row (e.g. row1: a b c d, row2: e f g h)

I am using Telerik Reporting Q3 2012.
Hadib Ahmabi
Top achievements
Rank 1
 answered on 30 Jul 2013
1 answer
91 views
We're doing some testing on Telerik Reporting Q2 2013 for compatibility with our current reports. First we're using a small function for getting the report on the enter button within textboxes.

function SubmitIt(sender, args) {<br>
  var c = args.get_keyCode();<br>
   if (c == 13) {<br>
  $get('<%=btnGetReport.ClientID %>').click();
  }
 }



What we're seeing in the code behind is that whatever radtextbox your cursor is in and is being edited is not being sent to the code behind one the first enter click. However on the second it is. Thus it always stays a enter stroke behind, unless you leave the radtextbox by physically click the get report button.

Hast anyone else seen this issue?
Hadib Ahmabi
Top achievements
Rank 1
 answered on 30 Jul 2013
2 answers
81 views
Hi Team,

    When we try to fetch records over 75000 and try to export into pdf(all is in programmatically no reportviewer used) then resportservice send us a exception saying this "Cannot set new clip region in an inner graphic state level."  .We don't understand why it is giving such error.Is it for out of memory problem? Please Tell us a solution.Client needs it desparately.

Thanks
S
Tejaswee
Top achievements
Rank 1
 answered on 30 Jul 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?