Telerik Forums
Reporting Forum
1 answer
253 views
Hi All,

I am changing Textbox.Value property on ItemDataBound evnet of Textbox 
for example TextBox.Value is 1000 but i want to change in some case to 55
but the sum function at GroupFooter is considering 1000 and not 55

is this possible ?? or its a wrong way???

Please HELP.....

Thanks in Advance.
Stef
Telerik team
 answered on 03 Mar 2014
9 answers
388 views
Hi.

I have a problem.
I´m trying open a report from my application, but a get this error

Error: System.Reflection.TargetInvocationException : An exception occurred during the operation, making the result invalid.  Check InnerException for exception details.
   em System.ComponentModel.AsyncCompletedEventArgs.RaiseExceptionIfNecessary()
   em Telerik.Reporting.Service.SilverlightClient.ListRenderingExtensionsEventArgs.get_Extensions()
   em Telerik.ReportViewer.Silverlight.ReportViewerModel.OnListRenderingExtensionsCompleted(Object sender, ListRenderingExtensionsEventArgs e)
 
 
------------- InnerException: -------------
 
 
System.ServiceModel.CommunicationException : The remote server returned an error: NotFound.
   em System.ServiceModel.Channels.Remoting.RealProxy.Invoke(Object[] args)
   em proxy_3.EndListRenderingExtensions(IAsyncResult )
   em Telerik.Reporting.Service.SilverlightClient.ReportServiceClient.OnEndListRenderingExtensions(IAsyncResult result)
   em System.ServiceModel.ClientBase`1.OnAsyncCallCompleted(IAsyncResult result)
 
 
------------- InnerException: -------------
 
 
System.Net.WebException : The remote server returned an error: NotFound.
   em System.Net.Browser.AsyncHelper.BeginOnUI(SendOrPostCallback beginMethod, Object state)
   em System.Net.Browser.BrowserHttpWebRequest.EndGetResponse(IAsyncResult asyncResult)
   em System.ServiceModel.Channels.HttpChannelFactory.HttpRequestChannel.HttpChannelAsyncRequest.CompleteGetResponse(IAsyncResult result)
 
 
------------- InnerException: -------------
 
 
System.Net.WebException : The remote server returned an error: NotFound.
   em System.Net.Browser.BrowserHttpWebRequest.InternalEndGetResponse(IAsyncResult asyncResult)
   em System.Net.Browser.BrowserHttpWebRequest.<>c__DisplayClassa.<EndGetResponse>b__9(Object sendState)
   em System.Net.Browser.AsyncHelper.<>c__DisplayClass4.<BeginOnUI>b__1(Object sendState)

on localhost it´s ok.

If i call the service directly on http://www.sgdweb.net/sgdweb/ReportService.svc it´s ok and the fiddler show the text in blue on service.jpg image.
But when i call from application the same address show error on fiddler.

Help me please.

Best regards




KS
Top achievements
Rank 1
 answered on 28 Feb 2014
1 answer
82 views
I have changed all the styles in my report to be grey, but there is a white box around my report.

It is the following tag.

<div class="trv-report-page" style="height: 149px; width: 1171px;"></div>
Peter
Telerik team
 answered on 28 Feb 2014
3 answers
149 views
Is it possible to take a report produced in the standalone designer, convert it and save it as a report class file?

A developer has built a number of reports using the standalone designer, and we'd like to roll them in with the existing reporting class library, but not sure how to get from the TRDX file to the VB version.

I've read this post, but I still don't understand if I can do the conversion to a class file, or how.
Davis Drury
Top achievements
Rank 1
 answered on 27 Feb 2014
1 answer
173 views
I have tons of reports I created in Visual Studio using Telerik Reporting.  How do I import these existing Telerik reports into the Telerik Report Designer?
KS
Top achievements
Rank 1
 answered on 27 Feb 2014
3 answers
72 views
I built a telerik bar chart, it displays properly when I don't use any IN parameters, however when I call at least one IN parameter, then the procedure gets called twice. Once with the valid parameter values and the second time with null values. The breakpoint hits all lines only once. I am not sure why it is calling the database procedure twice (only with IN parameters).

Additional information: C#, Telerik Q3 Reporting in Visual Studio 2012, SqlDataSource, The report is called from the DLL report library.

(Also, I tried with one string IN parameter, and with two: string and int64. I hardcoded the parameters and it still did not fix the issue)

What may cause this additional call?
KS
Top achievements
Rank 1
 answered on 27 Feb 2014
2 answers
66 views
I have an aspx page with dropdown selection and a space for report. (Report is loaded from the reference library.) When user selects the item and clicks the "Generate" button, the  new page opens up with the same dropdown and populated report.  It should open open below the dropdown in the designated place. (Every next time user clicks on the second window, the results will repopulate in that second window, without opening the third one).
How can I embed the report so that it always reloads in the first window?
Joan
Top achievements
Rank 1
 answered on 27 Feb 2014
1 answer
92 views
Apologies in advance if this has been asked and answered previously.

I am looking to integrate the Reporting tools into a project that I am currently working on which is using the Kendo UI framework (MVC)

This project is using the open access (data model (still getting to grips with all this EF based tech) ) and I was wondering what the best way to implementing the reports engine into my product.

I am moving away from an old SSRS 2005 instance and want to provide a more "dashboard" driven solution with lots of whizzy graphs etc. But I will still need to print out reports as part of the solution which is where the reporting tools fit (I think).

Rather than having a plethora of report definition files (like we do with SSRS over 100 at last count) is there a way I can just give a report a data source and render the information on the fly?

I have tried to follow the examples that Carey Payette did some time ago but I am just lost with how to implement the solution in a way that I need to rather than having lots of report files being created and maintained by me.

If some kind soul could point me in the right direction that would be great.


Stef
Telerik team
 answered on 27 Feb 2014
1 answer
196 views
Hello, 

I'm using HtmlTextBox with 2 levels of Unordered Lists, but they're all showing on the same indent level.. meaning the bullet points on the inner UL are different, but indentation is flat, so impossible to tell they're sub-bullets. 

same thing is happening with nested Ordered List. 


my html is structured ad: 

<ul>
   <li>..</li>
   <li>..</li>
   <ul>
      <li>...</li>
      <li>...</li>
    </ul>
</ul>
KS
Top achievements
Rank 1
 answered on 27 Feb 2014
2 answers
198 views
I am a pure beginner in csharp.

In my report, I have to group the results of an sql query data and calculate the average min., max. and median (I have three grouping categories: category I, II and III). For the average, min and max I can use the AVE-, MIN- and MAX-functions.
To calculate the median, I found the following c#-script:

public static double Median(this IEnumerable<double> list)
        {

            List<double> orderedList = list
                .OrderBy(numbers => numbers)
                .ToList();

            int listSize = orderedList.Count;
            double result;

            if (listSize % 2 == 0) // even
            {
                int midIndex = listSize / 2;
                result = ((orderedList.ElementAt(midIndex - 1) +
                           orderedList.ElementAt(midIndex)) / 2);
            }
            else // odd
            {
                double element = (double)listSize / 2;
                element = Math.Round(element, MidpointRounding.AwayFromZero);

                result = orderedList.ElementAt((int)(element - 1));
            }

            return result;
        }  


As I am an absolute c#-beginner, I don't know how to pass the sql-result of each group to the median-function... :-( I would be very thankful, if someone could provide me any hint.


IvanY
Telerik team
 answered on 27 Feb 2014
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
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?