Telerik Forums
Reporting Forum
1 answer
159 views
Newbe here,

Able to run Telerik reports on my local machine using VS2005.  All reports work great.

What am I supposed to do on my web server.  I copied the BIN and the APP_Code directories to the web server, and now the site won't come up.  I know the problem is in the web.config where Telerik makes references to some assemblies and other stuff.  Is there any documentaion for deploying to a web server?
Thanks in advance, JD
Chavdar
Telerik team
 answered on 13 Aug 2007
1 answer
252 views
Pleasant Greetings!

I need to build ad hoc reports. Our current database solution allows the creation of reports via MS SQL Reporting Services. This is a fine solution, which works fine. However, SSRS provides a high degree of overhead we would prefer to avoid. Telerik seems a fine alternative. The goal is to keep all the existing infrastructure, only replacing the presentation layer with Telerik Reporting.
________________
Currently, we support the following:
________________
The user will specify a "data set" from a predefined list of data sets the system provides. Based on the selected dataset, the user can pick associated fields for display. Also, Sorting and Grouping criteria can be added to each field.

All of these specifications are stored to a database, so the report can be repeatedly viewed.
_______________
What needs to happen is that I need to be able to create telerik textbox objects on the fly to correspond to the selected fields. Once the report layout is complete, I simply need to attach the datasource and view the report.

For performance reasons, it would be great if the generated report could be stored somewhere, somehow.

Thanks for any guidance, code samples, etc. that you can provide.

Tom
Rossen Hristov
Telerik team
 answered on 13 Aug 2007
1 answer
123 views
Hi,

Here is some sample code that ought to work (IMHO). Can you explain why it does not?

Thanks!!

Tom

        DataSet ds = new DataSet();  
        ds.Tables.Add();  
        ds.Tables[0].Columns.Add("a");  
        ds.Tables[0].Columns.Add("b");  
 
        ds.Tables[0].Rows.Add("a1", "b1");  
        ds.Tables[0].Rows.Add("a2", "b2");  
        ds.Tables[0].Rows.Add("a3", "b3");  
 
        Telerik.Reporting.TextBox tb = new Telerik.Reporting.TextBox();  
        Report1 r = new Report1();  
 
          
        r.DataSource = ds.Tables[0];  
 
        tb.CanGrow = true;  
        tb.Value = "=a";  
        tb.Location = new Telerik.Reporting.Drawing.PointU(new Telerik.Reporting.Drawing.Unit(1.625, Telerik.Reporting.Drawing.UnitType.Inch), new Telerik.Reporting.Drawing.Unit(0.5, Telerik.Reporting.Drawing.UnitType.Inch));  
        tb.Name = "a";  
        tb.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(1.625, Telerik.Reporting.Drawing.UnitType.Inch), new Telerik.Reporting.Drawing.Unit(0.25, Telerik.Reporting.Drawing.UnitType.Inch));  
        tb.Style.BackgroundColor = System.Drawing.Color.White;  
        r.Items.Add(tb);  
          
 
        tb = new Telerik.Reporting.TextBox();  
        tb.CanGrow = true;  
        tb.Value = "=b";  
        tb.Location = new Telerik.Reporting.Drawing.PointU(new Telerik.Reporting.Drawing.Unit(3.625, Telerik.Reporting.Drawing.UnitType.Inch), new Telerik.Reporting.Drawing.Unit(0.5, Telerik.Reporting.Drawing.UnitType.Inch));  
        tb.Name = "b";  
        tb.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(1.625, Telerik.Reporting.Drawing.UnitType.Inch), new Telerik.Reporting.Drawing.Unit(0.25, Telerik.Reporting.Drawing.UnitType.Inch));  
        tb.Style.BackgroundColor = System.Drawing.Color.White;  
        r.Items.Add(tb);  
 
        telerik.Report = r; 
Rossen Hristov
Telerik team
 answered on 13 Aug 2007
1 answer
145 views
Hello,

Telerik Reporting doesn't support .NET 1.1.
But I really need it in .NET 1.1 web app.

Is there any way include it into the application?
Maybe wrap it someway in .NET 1.1 library...

Thanks,
Dmitriy.
Svetoslav
Telerik team
 answered on 13 Aug 2007
3 answers
701 views
Hi,

How do I change the size and location of a TextBox at runtime?

I tried using the ItemDataBound event to set the size and location of the Processing.TextBox but these properties are ReadOnly.

I have to set the position and size (width) of the the TextBox based on it's value.

Thanks,
Bo
Svetoslav
Telerik team
 answered on 10 Aug 2007
1 answer
181 views
Hello,

Im creating reports using charts and ive several questions. First of all im using a bar chart. The data im using creates lots series. For each item on the x axis, there is one or more bars. So for example, 6 items on the x axis with 3 bars each.

One of the problems i encounter is that the labels for the x axis overlap each other and they become unreadable. Ive noticed that the chart is rendered quite small for all the data i need to display. I was looking for a solution and i thought maybe a good idea, at least for printing purposes, is that the chart could be rendered vertically. That way no matter how huge it is it will display all the series in a more viewable manner. Or maybe there is a better aproach for this problem.

So,
-How do i prevent labels from overlaping each other?
-How can i make the chart biger so the series are more viable?

Thanks in advanced,
Dan A. Rodriguez
Chavdar
Telerik team
 answered on 03 Aug 2007
1 answer
150 views
Hi, ALL
i am using Reportviewer as ReportMaking Tool.i tried a lot with Matrix and used ceiling function but i can't achieve it.I want to display Data in Report following manner

My Crieteria:

I Used to Develop An attendence Register for employees.Each Employees have Multiple Login and Logout.

Nw My Issue is I want to Group Each Employees with having his own IN and Out on a particular day he Present.And at the same time since each employees having several login and logout for a particular day.I want to Wrap a matrix after certain columns and display the rest in next line for that day of that employee

ie,

i Want in this format

Employee Name: E1

Present Day 1

IN1 OUT1 IN2 OUT2 IN3 OUT3..........after a particular column it should be wrapped and displayed in next line

IN4 Out4 IN5 OUT5...............this process is continued until all the login and Logouts of tht employees is displayed...

Then

Present Day2

INs and Outs

Present Day3

INs and Outs

After The first Employees

Similar Format is For all the other employees

Can Any one Help in this?
Hrisi
Telerik team
 answered on 02 Aug 2007
2 answers
347 views
I created two groups like
group1 and then a group2 inside now when i created a group 3 it gets added inside of group2 which is fine. but in this case i want to move that group upwards at the very top. The designer does let me drag the group upwards before the group1. How do i go about making it the first group

Thanks
Zeeshan HIrani
miacoviello
Top achievements
Rank 1
 answered on 02 Aug 2007
1 answer
146 views
Hi, I am trying to display different messages based on the results of a field in the table.

There are too many messages to use an IIF in the value property of the textbox.  Is there another way to do this?

I tried using =GetMessage(messagecode) to call a custom function I defined on my report but it did not work as well tried fully qualifying it.

Any assistance would be appreciated.

Michael Iacoviello
Rossen Hristov
Telerik team
 answered on 01 Aug 2007
1 answer
327 views
Is there a known compatibility issue with using Telerik Reporting and Charting in the same web application?

I have an existing web application that uses the Telerik Charting control on a page. The application works great. I tried to add a new web form to the application, with a Report Viewer Control on it. Now I get error when trying to compile the application ‘ChartAxisItem’ is ambiguous in the namespace ‘Telerik.charting’. In total I get about 23 errors, all basically the same (ambiguous) but with different charting properties (ChartSeriesType, ChartSeries, etc) . These errors are on the page that contains the chart. I added a report to the project to assign to the viewer but it’s blank.

I’m not really sure whats happening or why. I assume it has something to do with the Reports control having chart within it. Anyone have any suggestions?

Thanks
Robert
Chavdar
Telerik team
 answered on 30 Jul 2007
Top users last month
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Hiba
Top achievements
Rank 1
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?