Telerik Forums
Reporting Forum
6 answers
135 views
Hello all,
this question is directed directly to Telerik Team as i cannot ask them directly elsewhere as i am not a customer yet (:

anyhow, i am evaluating your reporting engine for our Company located in Cairo Egypt but i have a serious concern.

as i have watched several vedios for your report building and i think it has lots of potential for us to use specially the arabic support, the most important thing i noticed was Report Parameters, which is great by the way.

Regarding the Report Parameters shown on the top of each report, i need to confirm the following:
1 - do they work in both windows and web vieweres ?

2 - can i right align the parameters fields and set an arabic tags for the boolean and value parameters input UI fields or not ?


thank you and wish you more and more development in your products.
Maged Reda
Top achievements
Rank 1
 answered on 15 Oct 2009
7 answers
176 views
Hi Telerik Team,

I have just created my first report, that contains a chart. Beside the chart the report has a TextBox control.

For the TextBox I have set as Font Arial and as FontSize 9,75pt.

I tried to set the same Font-Settings for the AxisLabel of the X and the Y Axis. It nearly seems to work, but the text shown on report differs. While the TextBox shows the text as expected the AxisLabels text is very grainy. I have the same problem with the text in the legend and the scales in the chart, too. What am I doing wrong.
SIlvia
Top achievements
Rank 1
 answered on 14 Oct 2009
1 answer
233 views
I'm trying to reduce the export option to PDF & Excel.

I've searched the help and found this broken link -
http://www.telerik.com/help/reporting/configuringtelerikreporting.html

I've found a thread that suggests adding a section to the Webconfig.

What I have done is to create a web.config in the reports folder but it hides all the export options. What am I doing wrong.
<?xml version="1.0"?>  
<configuration> 
  <configSections> 
    <section name="Telerik.Reporting" type="Telerik.Reporting.Processing.Config.ReportingConfigurationSection, Telerik.Reporting.Processing, Version=3.1.9.701, Culture=neutral, PublicKeyToken=a9d7983dfcc261be" allowLocation="true" allowDefinition="Everywhere"/>  
   </configSections> 
  <Telerik.Reporting> 
    <Extensions> 
      <Render> 
        <Extension name="IMAGE" visible="false"></Extension> 
        <Extension name="HTML" visible="false"></Extension> 
        <Extension name="MHTML" visible="false"></Extension> 
        <Extension name="XLS" visible="true"></Extension> 
        <Extension name="CSV" visible="false"></Extension> 
        <Extension name="PDF" visible="true"></Extension> 
      </Render> 
    </Extensions> 
  </Telerik.Reporting> 
</configuration> 
 

Andy
Steve
Telerik team
 answered on 14 Oct 2009
0 answers
88 views
I have created a stored procedure and created a dataset for the stored procedure , i don't know how to pass the dataset to the report parameter.
Deepgowshy Sukumar
Top achievements
Rank 1
 asked on 14 Oct 2009
4 answers
213 views

Dear Telerik Support,

Is there a way to programmatically uncheck the Isnull checkbox on a report parameter?

Please advise,

Woody

Jim
Top achievements
Rank 1
 answered on 14 Oct 2009
7 answers
303 views
Hello - I have several Web reports in my application.  They work wonderfully... most of the time.  Every now and then, a Report will just spin and spin and spin, never actually displaying the Report.  If I go back and rerun the Report, it generates immediatly (as it should).  I'm not sure what to trouble shoot here, since clearly it works 90% of the time.  One user let it run over night and in the morning, it said 'Page Not Found'.  Do you have any suggestions?
Chavdar
Telerik team
 answered on 13 Oct 2009
1 answer
95 views
Hi,

I need to do some charts.  Am I using the Charting control inside Reporting?  I'm kind of confused on where to look for some documentation on how to do this?

Thanks,
Darren
Steve
Telerik team
 answered on 13 Oct 2009
0 answers
155 views

  Anyone help to access the table rows,
  i) Can i access the table rows in itemDatabound event like detail itemDatabound event
  ii) Give some samples of itemdatabound event for table.
  iii) Give some samples for accessing table rows.
jenbagaraman j
Top achievements
Rank 1
 asked on 13 Oct 2009
1 answer
126 views
Hi,

I put static list items in htmlTextBox. It is showing more gap between two lines in design view. But it is showing less space in edit expression. And same code I copied to notepad and saved as html, it is showing exactly same as edit expression view. 

How can get list like html or edit expression view. Please find attached screen shots with this mail.


Regards,

B.Sridhar

  
Steve
Telerik team
 answered on 12 Oct 2009
1 answer
136 views
Hi there.

I am new to Telerik Reporting and I have read some KB articles about using a stored procedure as my data source. I think I have it setup correctly because my _NeedDataSource method is getting called, but none of my data elements are getting populated. I am just hard-coding the parameters for now and when I run the sproc manually, I get data, so I am confused as to why I am not getting any data in my report. Here is my class:

 

public partial class My_Report : Telerik.Reporting.Report

 

{

  public My_Report()

  {

    InitializeComponent();

    this.DataSource = null;

 

    this.NeedDataSource += new System.EventHandler(this.My_Report_NeedDataSource);

  }

 

 

 

  private void My_Report_NeedDataSource(object sender, System.EventArgs e)

  {

    //Transfer the ReportParameter value to the parameter of the select command

 

    this.sqlDataAdapter1.SelectCommand.Parameters["@PersonID"].Value = 8;

 

    this.sqlDataAdapter1.SelectCommand.Parameters["@OperatorID"].Value = 11; 

 

    //Take the Telerik.Reporting.Processing.Report instance and set the adapter as it's DataSource

 

    Telerik.Reporting.Processing.

Report report = (Telerik.Reporting.Processing.Report)sender;

 

    report.DataSource =

this.sqlDataAdapter1;

 

  }

}

 

 

I have each of my fields in a table referencing in this manner:
    =Fields.TaskNumber

I do no receive any errors or anything, so I am looking for some guidance.

Thanks, Mike

 

More info:
When I added this to my NeedDataSource method:

 

 

this.sqlConnection1.Open();

 

 

int rows = this.sqlSelectCommand1.ExecuteNonQuery();

rows returns -1, so I am somehow not getting any data back. I removed the parameters from the sproc and just hardcoded them and I still get a return value of -1 in rows. Any ideas?

 

Michael Love
Top achievements
Rank 1
 answered on 09 Oct 2009
Top users last month
Chester
Top achievements
Rank 1
Iron
Simon
Top achievements
Rank 1
Iron
Douglas
Top achievements
Rank 2
Iron
Iron
SUNIL
Top achievements
Rank 3
Iron
Iron
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?