Telerik Forums
Reporting Forum
3 answers
60 views
Hi,

We are using Telerik Reporting 2010 Q3 SP1. Version: 4.2.10.1221.

1. All the telerik reports are in one assembly. We use the Telerik.Reporting.Processing.ReportProcessor to render the report as pdf.
2. We use english and french for localization purposes.

I added a static user defined function to the report class and calling it from the designer via the 'Edit Expression' window. The problem is that the new function is being recognized only on the english (default) language. On the french version the report executes as if the function never existed and calls the older implementation. Is this a known bug? Is there any workaround for this? Let us know.

Let me know if you need any more information.

BTW I am using my managers account to post the question to avoid any licensing questions....

Thanks,
Praveen
Steve
Telerik team
 answered on 25 May 2011
1 answer
82 views
When will the road map for the next release be posted?  Other Telerik products have listed their general or detailed roadmaps but the Q2 release for Reporting is missing any details.
Steve
Telerik team
 answered on 25 May 2011
1 answer
81 views
I posted a message about this a month or so ago...cant seem to find the post, but the issue came up again

I need the ability to conditionally set visibility based on if it's rendering to export or rending to a viewer.

So I have navigation items (links) in my report...but in the context of a PDF they just don't work and look out of place.

Is that on the Roadmap somewhere?...if not, could it be?
Hrisi
Telerik team
 answered on 24 May 2011
3 answers
346 views
I was using the SilvelightClient's ListAvailableReports to get a listing of the reports to populate a ComboBox so a user could choose which of the reports to view. This was working perfectly, but this morning I installed the Reporting Q1 2011 SP1 and upgraded the reports in my project to that new SP 1 version.

The Telerik.Reporting.Service.SilverlightClient.ListAvailableReportsEventArgs that gets returned in the completed method is now throwing a System.Reflection.TargetInvocationException error:

Exception:
{System.Reflection.TargetInvocationException: An exception occurred during the operation, making the result invalid.  Check InnerException for exception details. ---> System.ServiceModel.CommunicationException: The remote server returned an error: NotFound. ---> System.Net.WebException: The remote server returned an error: NotFound. ---> System.Net.WebException: The remote server returned an error: NotFound.
   at System.Net.Browser.BrowserHttpWebRequest.InternalEndGetResponse(IAsyncResult asyncResult)
   at System.Net.Browser.BrowserHttpWebRequest.<>c__DisplayClass5.<EndGetResponse>b__4(Object sendState)
   at System.Net.Browser.AsyncHelper.<>c__DisplayClass4.<BeginOnUI>b__1(Object sendState)
   --- End of inner exception stack trace ---
   at System.Net.Browser.AsyncHelper.BeginOnUI(SendOrPostCallback beginMethod, Object state)
   at System.Net.Browser.BrowserHttpWebRequest.EndGetResponse(IAsyncResult asyncResult)
   at System.ServiceModel.Channels.HttpChannelFactory.HttpRequestChannel.HttpChannelAsyncRequest.CompleteGetResponse(IAsyncResult result)
   --- End of inner exception stack trace ---
   at System.ServiceModel.Channels.Remoting.RealProxy.Invoke(Object[] args)
   at proxy_3.EndListAvailableReports(IAsyncResult )
   at Telerik.Reporting.Service.SilverlightClient.ReportServiceClient.OnEndListAvailableReports(IAsyncResult result)
   at System.ServiceModel.ClientBase`1.OnAsyncCallCompleted(IAsyncResult result)
   --- End of inner exception stack trace ---
   at System.ComponentModel.AsyncCompletedEventArgs.RaiseExceptionIfNecessary()
   at Telerik.Reporting.Service.SilverlightClient.ListAvailableReportsEventArgs.get_Reports()
   at Xxxx.BillingReports.ViewModels.MainViewModel.client_ListAvailableReportsCompleted(Object sender, ListAvailableReportsEventArgs e)
   at Telerik.Reporting.Service.SilverlightClient.ReportServiceClient.OnListAvailableReportsCompleted(Object state)}

Thanks for the assistance!
Pediatric Computing
Top achievements
Rank 1
 answered on 24 May 2011
1 answer
161 views
Hi,
I'm trying to represent some datas with a chart of type bar. The datas are the yearly sales of 10 different stores. My data source (a query) retrieves the datas sorting them by sales amount descendent.
If i bind the datas to the chart oriented horizontally I get the store with the highest amount in the extreme left correctly. If I turn the orientation to vertical the store with the highest amount goes on the bottom ! I would like it to be on top, but for a number of reasons I cannot change the query. Is it possible ?

Thanks

Lorenzo
Ves
Telerik team
 answered on 24 May 2011
1 answer
598 views
Hi
How to generate barcode without text.
Help me.
thanks
Jose R
Top achievements
Rank 1
 answered on 23 May 2011
5 answers
138 views
Hi

I am using an HtmlTextBox to render an anchor with a link to a page within my website. The links renders correctly in silverlight viewer but there is no interactivity, it’s just static. Is this supported within the silverlight report viewer?

If not, how can I get the Action property to open in a new window instead of loading in the current window?

 

Thank you.

Chavdar
Telerik team
 answered on 23 May 2011
3 answers
166 views
Hello,

I have created a new report using the CrossTab Wizard.
I have a datasource where two of its columns have the backcolor and forecolor html values for a group name (in another column).
Is it possible assign this color to the textbox showing the group name?

Thanks in advance
Carlos

IvanDT
Telerik team
 answered on 20 May 2011
1 answer
94 views
I see in the documentation that lists are supported in the HTML text box.

I am wondering if there is a simpler method for creating a horizonal list of floated <li> items from a database query.

In my case, this would be a list of keywords that would consume a great deal of vertical space if listed in that arrangement.

It is my understanding that I COULD add the list formatting in the Item Created event, but it seems to me this would be a common-enough requirement to have a simpler solution.

Collapse imageSupported HTML tags

Various formatting options are available to control the text presentation:

  • Font, size (relative size against the font size of the item, default is 3 (1-7)), color (<FONT>)
  • Bold, Italic, Underline (<STRONG>,<B>, <EM>, <I>, <U>)
  • HyperLink (<A href target>)


Steve
Telerik team
 answered on 20 May 2011
7 answers
743 views
I've seen the knowledge base article on how to change alternating row colors of the details section using a databound event handler.  That article describes setting the processing items background color explicitly.

Could you please provide an example of changing the detail sections style on alternating rows.  I've tried the following but it didn't work.
int counter=0;  
private void detail_ItemDataBound(object sender, EventArgs e)  
    {  
    Telerik.Reporting.Processing.DetailSection section = sender as Telerik.Reporting.Processing.DetailSection;  
    if (section != null)  
        {  
        if (counter % 2 == 0) //even row     
            {  
            section.ItemDefinition.StyleName = "ReportRow";  
            }  
        else //odd row     
            {  
            section.ItemDefinition.StyleName = "ReportRowAlt";  
            }  
        counter++;     
        }   
    }  
 
Massimiliano Bassili
Top achievements
Rank 1
 answered on 20 May 2011
Top users last month
Anislav
Top achievements
Rank 6
Silver
Bronze
Bronze
Jianxian
Top achievements
Rank 1
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Jim
Top achievements
Rank 2
Iron
Iron
Nurik
Top achievements
Rank 2
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?