Telerik Forums
Reporting Forum
9 answers
129 views
I know throwing the word BUG out there sounds alarmist but I can reproduce this every time I try. If I select multiple textboxes at one time on a report and in the properties panel click on the ... for conditional formatting, it will let me create and set a rule but that rule is never applied and if I go back to the formatting rules it is gone.
Janus Pedersen
Top achievements
Rank 2
 answered on 12 Feb 2009
4 answers
226 views
I followed the Telerik Trainer Bind to Data Programatically portion and I cannot get get the report working. After following the steps, set up my datasource, and put my textboxes. When go and preview the report, it give me the msg 'The source of the report definition has not been specified'. How do I solve this?
Steve
Telerik team
 answered on 12 Feb 2009
1 answer
102 views
Hi

I want a subreport to print even when there is no data, because I want print a "No data" message.
How can I do this?

Thanks.
Ryan Emptage
Top achievements
Rank 1
 answered on 11 Feb 2009
3 answers
163 views
Hi

I am experiencing problems with the reporting quite, I recently upgraded to 2008 Q3 sp2 , when i create a new report in the App_Code folder, it just creates the file , but does not show up the wizard and does not display the tab for designing the report, I tried reinstalling , installed a earlier version and it still gave me the problem.

My current spec is :
Windows XP SP3
SQL Express 2005 and Management tool
Visual Studio 2008 Standard Upgraded to SP1 and .NET 3.5
Zone Alarm Firewall and Norton 360.


Need help ASAP

Thank you
Stuart
Top achievements
Rank 1
 answered on 11 Feb 2009
8 answers
176 views
Hi,

I have a report Viewer on a aspx page that uses a master page.  the content pane on this page is constrained by its inclusion inside a table on the master page which is set to a fixed width.

My question concerns the fact that the textbox items on the report wrap when the report viewer is constrained in width, screwing up the design.  When exported to pdf everytihng lays out as it should.  It would seem more intuitive for the report viewer to layout the report with its original design and use a horizontal scroll bar. How do I enable this functionality?
rh
Top achievements
Rank 1
 answered on 10 Feb 2009
2 answers
91 views
Hello

I have following problem. I need strongly to display group footer on the bottom of page, but it appears after detail section directly. I can't use page footer as it appers on each page of report.

Could someone help me?

P.S. Sorry, I forgot to enter my details in my profile. I have corrected that now.
sirin
Top achievements
Rank 1
 answered on 09 Feb 2009
1 answer
128 views
I think the pervious may be not clear ,
Now , when i going to use the telerik reporting it must avilabe in Installed templates , but it doesn't appear ....
Please any one know a solution for this problem send it please as soon as you can

Thannks in advance
Steve
Telerik team
 answered on 09 Feb 2009
1 answer
219 views
I want to pass Parameters to Telerik Report from database and  i am unaable to find the ways for it.so plz do help us to come of this chaos.and  as i am new to this telerik reporting so could you provide me one sample application how to deal with database and reports.

thankx in advance,
jaspreet
Steve
Telerik team
 answered on 06 Feb 2009
3 answers
328 views
Hi,
    I want to create a telerik report bearing the contents coming from a dataset. The report is to be created at runtime as the number of rows and columns of the dataset may vary depending on the stored procedure fired. I want to display the header on each and every page after exporting report to PDF. For displaying the header, I have created a function named "DisplayHeader()". I have currently displayed the header for the report in the detail section (and not in the header section) because the report was not displaying all the column headers on one line. I have pasted the code below :


        public Report_PDF()

        {

            /// <summary>

            /// Required for telerik Reporting designer support

            /// </summary>

            InitializeComponent();

            DBUtilReport db = new DBUtilReport(Connectionstring);

            DataSet ds = new DataSet();

            SqlCommand cmd = new SqlCommand();

            cmd.CommandType = System.Data.CommandType.Text;

            cmd.CommandText = "select * FROM Tablename";

            db.FillDataSet(cmd, ref ds);

            

            Unit a = new Unit(100, UnitType.Pixel);

            Unit b = new Unit(100, UnitType.Pixel);

            Unit m = new Unit(10, UnitType.Pixel);

            Unit n = new Unit(40, UnitType.Pixel);

      

            int cols = ds.Tables[0].Columns.Count;      

            int paperWidth = 297;           

            int width = paperWidth / cols;

            Unit TxtBoxWidth = new Unit(width, UnitType.Pixel)+n;

            Unit k1 = new Unit(5.0, UnitType.Pixel);

            DisplayHeader(m,k1,a,ds);

            m = m + n + m;

            for (int i = 0; i < ds.Tables[0].Rows.Count; i++)

            {

                Unit k = new Unit(10.0, UnitType.Pixel);

                for (int j = 0; j < ds.Tables[0].Columns.Count; j++)

                {

                    Telerik.Reporting.TextBox txtData = new Telerik.Reporting.TextBox();

                    txtData.Multiline = true;

                    txtData.TextWrap = true;

                    txtData.Style.TextAlign = HorizontalAlign.Left;

                    txtData.Style.VerticalAlign = VerticalAlign.Top;

                    txtData.Style.Font.Name = "Verdana";

                    txtData.Value = ds.Tables[0].Rows[i][j].ToString();

                    txtData.Height = new Unit(75, UnitType.Pixel);

                    txtData.Width = new Unit(100, UnitType.Pixel);

                    txtData.Left = k;

                    txtData.Top = m;

                    txtData.CanShrink = true;

                                  

                    this.detail.Items.Add(txtData);

                    k = k + a;

                }

                m = m + b;

            }

         // function for displaying the header

        protected void DisplayHeader(Unit m,Unit k1,Unit a,DataSet ds)

        {

            for (int i = 0; i < ds.Tables[0].Columns.Count; i++)

            {

                Telerik.Reporting.TextBox txtHeader = new    Telerik.Reporting.TextBox();

                txtHeader.Multiline = true;

                txtHeader.TextWrap = true;

                txtHeader.Style.TextAlign = HorizontalAlign.Left;

                txtHeader.Style.VerticalAlign = VerticalAlign.Top;

                txtHeader.Style.Font.Name = "Verdana";

                txtHeader.Style.Font.Bold = true;

                txtHeader.Value = ds.Tables[0].Columns[i].ColumnName.ToString();

                txtHeader.Height = new Unit(75, UnitType.Pixel);

                txtHeader.Width = new Unit(100, UnitType.Pixel);

                txtHeader.Left = k1;

                txtHeader.Top = m;

                txtHeader.CanShrink = true;

               

                this.detail.Items.Add(txtHeader);

                k1 = k1 + a;

            }

        }

        
Steve
Telerik team
 answered on 06 Feb 2009
2 answers
199 views
Is it possible to bind Telerik reporting and WCF?  If so, do you have any examples?

Thank you,
Chris
k f
Top achievements
Rank 1
 answered on 06 Feb 2009
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?