Telerik Forums
Reporting Forum
1 answer
116 views
My silverlight Telerik.ReportViewer.Silverlight.dll is 5, 3, 11, 1116
My reporting Telerik.Report.dll is 6, 0, 12, 215

In the report preview(from designer), i can see the Document Map (by making the DocumentMapText value bound to one of my fields.That's all for the report side. Any missing setting????)
However, when i run my silverlight application, i don't see the Document Map showed on my silverlight reportViewer control

Does anyone experience this issue? this is very urgent . plz help 

nothing fancy for my Silverlight part of the ReportViewer
<telerikReport:ReportViewer  UseNativePrinting="False" Name="reportViewer"   ReportServerUri="../ReportService.svc" 
        />

this.reportViewer.ReportServiceClientFactory = this;
this.reportViewer.Report = "SilverFinancials.Report." + _reportCSName + ",SilverFinancials.Report, Version=1.0.0.0, Culture=neutral , PublicKeyToken=null";
Steve
Telerik team
 answered on 01 Jun 2012
4 answers
722 views
Hei,

I'm working on a telerik report in which i add  subreports dynamicalWhen a subreport has a lot of data such that it will not fit into the remaining area of the current page the program inserts a page break leaving a lot of white space. I have set the page break to none and keep together to false but it doesn't help.
Petio Petkov
Telerik team
 answered on 01 Jun 2012
1 answer
96 views
I am using the latest version of Telerik Reporting. My Report has 3 parameters that use seperate Datasources for each. One of the Datasource objects returns a large dataset. I would like to know how to implement the same  Load on Demand  functionallity as I use on the RadComboBox Controls Load on Demand. 
It would even work if I had the functionallity like Telerik uses on the ComboBox used when you Select your Country on the Create accout page.

Thanks,
DM 

Example from RadComboBox
protected void RadComboBox2_ItemsRequested(object sender, RadComboBoxItemsRequestedEventArgs e)
{
     DataTable data = GetData(e.Text);
}

private static DataTable GetData(string text)
{
     SqlDataAdapter adapter = new SqlDataAdapter("SELECT * from Customers WHERE CompanyName LIKE @text + '%'",
ConfigurationManager.ConnectionStrings["NorthwindConnectionString"].ConnectionString);
adapter.SelectCommand.Parameters.AddWithValue("@text", text);

DataTable data = new DataTable();
adapter.Fill(data);

return data;
}


Steve
Telerik team
 answered on 01 Jun 2012
1 answer
130 views
Hi,

I've using te vs2008 sp1 which is professional edition. i've install the telerik reporting Q1 2012. The installation process runs smoothly. I open the visual studio and the telerik reporting tools is available at the toolbox.

Now, i add a new telerik report file call report1.cs at the app_code folder. It shows error object reference not set to an instance of an object. so i went on to check the reference at the .NET tab inside the "Add Reference". All the references are there.

So what am i missing?
Steve
Telerik team
 answered on 01 Jun 2012
3 answers
154 views
Hello again :)
By default go to page not working? How it enable?
Steve
Telerik team
 answered on 31 May 2012
2 answers
117 views
Hello
It possible to hide navigation buttons and how?

 
Hans
Top achievements
Rank 1
 answered on 31 May 2012
1 answer
782 views
Hi,
I would like to add an automatic number (autoincrementing number/field) to the text under each table and picture in my report, like:
Table {autonumber} shows annual income.. etc.

Is there a way I can create a field, or something that I can insert in a htmlTextbox along with the text, that dynimically auto increments a value with each entry? 
Steve
Telerik team
 answered on 31 May 2012
1 answer
119 views

I would like to limit the number of X-Axis Label Steps to around 3 or 4 labels.  The amount of data displayed on the chart can vary from just 5 points to hundreds and the number of points for each Pen can vary significantly. 

It is my assumption that the “XAxis.LabelStep” property assumes a constant number of points for each ChartSeriesItemCollection.  I had originally set it to

                Chart1.PlotArea.XAxis.LabelStep = Convert.ToInt32(MaxPoints / 3) +1;

But I get a strange group of characters in the upper left portion of the trend and the incorrect number of Labels created.  Given my objective, what would be the ideal way to specify the number of Labels for the X-Axis?

Steve
Telerik team
 answered on 31 May 2012
1 answer
167 views
I have a multivalue parameter named "@CountryID" with the "Allow Null" property = True.  Works fine if I select the null checkbox or select a single value.  BUT, when I select multiple values I get a SQL exception.

SQL to look like this:


"select * from Countries where CountryID IN (isnull(@CountryID,CountryID))"

The error I get when I pass in MULTIPLE VALUES is ... "The isnull function requires 2 argument(s)"

I'm not sure what is happening here ... but it looks like when multiple values are specified the @CountryID isn't being set to something like "1,2,3" as I would expect.

Thanks - Wayde
Steve
Telerik team
 answered on 31 May 2012
1 answer
123 views
I have created a reports library and using it to display multiple charts in reportbook in a project.
It runs fine on my local pc but gives error when put live.
the error it gives -

An error has occurred while processing Chart 'Chart1': A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: SQL Network Interfaces, error: 26 - Error Locating Server/Instance Specified)

can u suggest where the issue can be?
i've checked the connection string and it is fine.
Steve
Telerik team
 answered on 31 May 2012
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
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?