Telerik Forums
Reporting Forum
1 answer
43 views
Hi all,

    I have a telerik report file that loads to telerik report viewer. when I try to export to PDF using report viewer it doesn't give any output ( no PDF) I can see a message bellow saying waiting for localhost.. . other formats works OK. In excel format report shows a huge blank gap after first table with data. highly appreciate if you all can help. 

Shivanka
Steve
Telerik team
 answered on 29 Aug 2012
2 answers
173 views
Hi,

I've been looking everywhere, but I don't find any "Import Designer Generated Report to App Guidance".

Should they be saved on the Database or DLL?, How to set the Data Source?, Best Practices? Security?? Etc...

This info will be appreciatted.
Jaime Bula
Top achievements
Rank 2
 answered on 28 Aug 2012
1 answer
192 views
Hello All,

There is a column named "levelID", which is prepared by my DB and return to my report. The values range from 0 to 4.
Now I setup the left Padding in the cell "binding" as Style.padding.left=CStr(0.1*Fields.levelID)+'in'.which does not work.
Then i removed the "in", just setup the padding as 0.1* fields.levelID, but still not working.

Who can share some ideas on this?
Thanks in advance
Steve
Telerik team
 answered on 28 Aug 2012
1 answer
293 views
Hello All,

My report requests a simple feature of "Toggle Visibility".

My data looks like Pic1(Attached).

I setup 2 groups in my report(parent and detail)

On the parent level, i setup the toggle visibility on the first cell. When the report is browsed as initial expanding, it looks good as attachment pic2.--But i wanna archive if no children under the group item, can I hide the "+" or "-" signs.

The worse part is (See attacment Pic3.) , when i collapsed the toggle item, it automatically shows me the "total line" , which is not expected becasue the calculation is not the simple adding up by the detail items. In the data set reurned to report , i have calculated the so-called "summary" by a complex business logic. can I not display this "total line" when I collapse the toggle item.

Also, BTW, I hide the rows in detail group if the children name is equal to the parent name. That is why , initially, the "commissions" line only shows on my group header level, which is expected.
IvanY
Telerik team
 answered on 28 Aug 2012
2 answers
804 views
I have urgent requirement to make a automated reporting system and I am trying to create a report programmatically using telerik reporting.
So, far I was able to create group but not able to add group footer so that I can show sum, avg etc.
My code is:
 Telerik.Reporting.TextBox txtGroupHeader = new Telerik.Reporting.TextBox();
            Telerik.Reporting.TextBox txtGroupTotal;// = new Telerik.Reporting.TextBox();
            toggleVisibilityAction1 = new Telerik.Reporting.ToggleVisibilityAction();


            txtGroupHeader.Action = toggleVisibilityAction1;
            toggleVisibilityAction1.DisplayExpandedMark = false;


            // Required for telerik Reporting designer support


            InitializeComponent();


            TableGroup group = new TableGroup();
            Telerik.Reporting.TableGroup tableGroup4 = new Telerik.Reporting.TableGroup();
            Telerik.Reporting.TableGroup tableGroup5 = new Telerik.Reporting.TableGroup();
            group.Name = "Season";
            group.Groupings.AddRange(new Telerik.Reporting.Grouping[] {
            new Telerik.Reporting.Grouping("=Fields.Season")});
            group.Sortings.AddRange(new Telerik.Reporting.Sorting[] {
            new Telerik.Reporting.Sorting("=Fields.Season", Telerik.Reporting.SortDirection.Asc)});


            txtGroupHeader.Name = "txtGroupHeader";
            txtGroupHeader.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Cm(3.9314577579498291D),  Telerik.Reporting.Drawing.Unit.Cm(0.43585944175720215D));<br>
            txtGroupHeader.Style.BackgroundColor = System.Drawing.Color.Red;
            txtGroupHeader.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.Solid;
            txtGroupHeader.Style.Color = System.Drawing.Color.White;
            txtGroupHeader.Style.Font.Bold = true;
            txtGroupHeader.StyleName = "";
            txtGroupHeader.Value = "=Fields.Season";
            tableGroup4.Groupings.AddRange(new Telerik.Reporting.Grouping[] {
            new Telerik.Reporting.Grouping(null)});
            group.Sortings.AddRange(new Telerik.Reporting.Sorting[] {
            new Telerik.Reporting.Sorting("=Fields.Season", Telerik.Reporting.SortDirection.Asc)});
            tableGroup4.Name = "Details";
            tableGroup5.Name = "Group1s";
            //group.ChildGroups.Add(tableGroup4);
            //group.ChildGroups.Add(tableGroup5);
            //this.table1.Body.Rows.Add(new Telerik.Reporting.TableBodyRow(Telerik.Reporting.Drawing.Unit.Cm(1)));<br>
            this.table1.Corner.SetCellContent(0, 0, txtGroupHeader);
            this.table1.Items.Add(txtGroupHeader);
            group.ReportItem = txtGroupHeader;
            //Remove the detail group
            TableGroup detailGroup = table1.RowGroups[0];
            table1.RowGroups.Clear();
            //detailGroup.Visible = false;
            toggleVisibilityAction1.Targets.AddRange(new Telerik.Reporting.IToggleVisibilityTarget[] {
            detailGroup});
            //Add the detail group as a child to the AgeGroup (nest it)
            group.ChildGroups.Add(detailGroup);
            table1.RowGroups.Add(group);
---------------------


I tried finding help with visual studio generated code but to no avail. Please help as it is urgent. 
IvanY
Telerik team
 answered on 28 Aug 2012
1 answer
170 views
Hi i have created a Telerik report, with parameters SellerID , i have incorporated it into my program and if the user selects a seller they will be able to view the report of that seller, i have also added in a bulk mailer so for all selected users the reports are mailed to the respected sellers, now i need to insert a bulk print , so if the user selects 10 or 15 sellers reports to print how would i code this into my app?

Please HELP
Steve
Telerik team
 answered on 28 Aug 2012
1 answer
38 views
I using the telerik web report viewer to display a simple report and the user tends to print it out every time.

Most of the time the printed copy shows up fine but on occasion, the text is all messed up. Not the labels on the report but the actual text for the data.

Any clue to what might cause this problem? I've attached a scan of one of these messed up reports.

Any help is much appreciated.

Loy.
Steve
Telerik team
 answered on 28 Aug 2012
0 answers
96 views
HI
       i have problem with master detail report. I want to merge the parameters of master report to the detail report(like crystal Datalink).








Thanks
Dhamodharan
Dhamodharan
Top achievements
Rank 1
 asked on 28 Aug 2012
0 answers
64 views
hello
i have a problem with data source data
while i want add a new data source show up  this error:
An error  occurred while retrieving the information from the database: The type initializer for 'Microsoft.VisualStudio.DataDesign.SyncDesigner.SyncFacade.SyncTableConfigManager' threw an exception.
i reinstall vs 2008 sp1,but don't solve my trouble.
plz,help me anybody.
thanks.
Zahra
Top achievements
Rank 1
 asked on 28 Aug 2012
1 answer
52 views
Hi all:

I was wondering if there was a good practice in showing the total number of rows being returned within the ProgressText property of a reportviewer control.

It would be displayed like so:

"Getting 200 of 2000 records" - something to that effect;

Any thoughts would be greatly appreciated.

Steve
Telerik team
 answered on 28 Aug 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?