Telerik Forums
Reporting Forum
1 answer
124 views

We have a report that has a select box that contains a very long list of stores.  Each store has a very long list of their own product IDs.

When I select a store from the select list the product IDs list populates so that I can select one or more products.  That works great.

However, when I select multiple stores, the product IDs list grows extremely long making it difficult to find the IDs the user wants to select.

Any ideas on what a good solution is to this?  Is there maybe some way to make it so that the last store that is clicked on then only that store's product ID's display in the select list?

Thank you.

Nasko
Telerik team
 answered on 27 Sep 2017
3 answers
989 views

Is it possible to conditionally hide (or show) columns when exporting a report to CSV?

We've noticed that our reports are including subtotals as a column with the value repeated for each row in the same group.  

 

I figured I could bind the visibility of the textbox to some value that indicates the rendering type (CSV, or other), but I can't find anything that indicates how the report is being rendered.

I'm using Reports 2017 R2

Todor
Telerik team
 answered on 25 Sep 2017
1 answer
783 views
We were using R2 2017 then we had uninstalled and tried to re-install it but we kept getting a message to update to the current version R3 2017.  We would like to continue using R2 2017 as we do not have the time right now to QA an upgrade to R3 2017.
Peter
Telerik team
 answered on 25 Sep 2017
7 answers
384 views

hi team,

we created a parameter in telerik report designer by providing option as multi selected value and in the preview mode we can see multiselected checkbox drop down appeared. But when we show .trdp file in asp.net telerik report viewer, same control is coming like multi selection list box.but we want multi selected checkbox drop down , how to achieve this? this urgent please respond.

Katia
Telerik team
 answered on 25 Sep 2017
1 answer
133 views

We have been working with Telerik for around six months now. Everything has been functioning fine; however, it seems recently we are experiencing problems with the Cache eating up a few GBs on our virtual server. This leads to us not being able to load reports unless we login remotely and delete the Temp folder for the reporting. We are looking for a long term solution. We are working on increasing space on our server; however, we would like to be able to somehow limit the cache size (which would hopefully make things a little more predictable). I've also thought about tying into the database for caching; however, I'm hesitant to do that because I don't know how much space it would take up.

Nasko
Telerik team
 answered on 25 Sep 2017
3 answers
951 views
hi

i am using a textbox to display a date,

the format property in the textbox is "MM/dd/yyyy" it should display for example  5-may-2012 ----->  "05/05/2012"

but it is only showing a digit in day and month ..   "5/5/2012"

i have reviewed the server configuration but it has the same format "MM/dd/yyyy"


HELP ME PLEASE!





Konstantinos
Top achievements
Rank 1
 answered on 25 Sep 2017
0 answers
74 views

I want to make a table like blow:

--------------------------------------------------

category   |  Name |   Amount | Total |

--------------------------------------------------

                 |paper   |   5           |          |

AAAA       | Pen     |   10         |    20  |

                 |XXX     |   5           |          |

----------------------------------------------------

 

What can I do?

 

Vincent
Top achievements
Rank 1
Iron
 asked on 22 Sep 2017
0 answers
67 views
Hi if you have any idea on Telerik controls, could you please tell me how to add dynamic controls to Radgrid on a button click(which is present inside RadGrid)?
sandeep
Top achievements
Rank 1
 asked on 22 Sep 2017
1 answer
431 views

Hello,

I have created a Telerik Reporting REST service in order to render "telerik reports" on my Web Application in HTML 5 view. I am currently using the following code on my Web Application page "Report.aspx" to consume the service.

 <script type="text/javascript">
       
        $("#reportViewer1")
            .telerik_ReportViewer({
                serviceUrl: "http://localhost:62355/api/reports/",
                templateUrl: '/ReportViewer/templates/telerikReportViewerTemplate.html',
                reportSource: {
                    report: "VB.ReportLibrary.ReportCatalog, VB.ReportLibrary",
                    parameters: {
                    }
                },

                viewMode: "ViewModes.INTERACTIVE",
                scaleMode: "ScaleModes.SPECIFIC",
                scale: "1.0",
                PersistSession: "true"

            });
       
    </script>

When I open "Report.aspx" it throws an error "Client with ID '[object Object]' not found. Expired" on locally running Service App (See attached image "ServiceError.jpg"). At the same time client side(Web App page Report.aspx) shows an alert message "Gone" (See Image 410_Gone.jpg). ReportsController.vb code is as follows:

Imports Telerik.Reporting.Cache.Interfaces
Imports Telerik.Reporting.Services.Engine
Imports Telerik.Reporting.Services.WebApi
Imports System.IO
Imports System.Web.Http.Cors

'The class name determines the service URL.
'ReportsController class name defines /api/report/ service URL.

<EnableCors("http://localhost:53274", "*", "*")>
Public Class ReportsController
    Inherits ReportsControllerBase

    Shared configurationInstance As Telerik.Reporting.Services.ReportServiceConfiguration

    Shared Sub New()
        'This is the folder that contains the trdx or trdp report definitions
        'In this case this is the Reports folder
        Dim appPath = HttpContext.Current.Server.MapPath("~/")
        Dim reportsPath = Path.Combine(appPath, "Reports")

        'Add resolver for trdx report definitions,
        'then add resolver for class report definitions as fallback resolver;
        'finally create the resolver and use it in the ReportServiceConfiguration instance.
        Dim resolver = New ReportFileResolver(reportsPath) _
                       .AddFallbackResolver(New ReportTypeResolver())

        'Setup the ReportServiceConfiguration
        Dim reportServiceConfiguration As New Telerik.Reporting.Services.ReportServiceConfiguration()
        reportServiceConfiguration.HostAppId = "reportViewer1"
        reportServiceConfiguration.ReportResolver = resolver
        reportServiceConfiguration.Storage = New Telerik.Reporting.Cache.File.FileStorage()
        reportServiceConfiguration.ReportSharingTimeout = 0
        reportServiceConfiguration.ClientSessionTimeout = 9999
        configurationInstance = reportServiceConfiguration
    End Sub

    Public Sub New()
        'Initialize the service configuration

        Me.ReportServiceConfiguration = configurationInstance
    End Sub

    Protected Overrides Function CreateCache() As ICache
        Return Telerik.Reporting.Services.Engine.CacheFactory.CreateFileCache()

    End Function

End Class

 

Can you please provide a solution regarding same. My end goal is to render telerik report on web form page using html 5 report viewer (See expected_result.jpg).

Katia
Telerik team
 answered on 20 Sep 2017
1 answer
388 views

One of our client when to repeat a table on every page of the report. My idea was to use the page header to achieve but I discover that the page header doesn't accept any data-bound items on it.

So my question, does it exist a way to repeat a data-bound item (texbox, table) on every page of the report?

Yana
Telerik team
 answered on 20 Sep 2017
Top users last month
Edmond
Top achievements
Rank 1
Iron
fabrizio
Top achievements
Rank 2
Iron
Veteran
RobMarz
Top achievements
Rank 2
Iron
Fakhrul
Top achievements
Rank 1
Iron
Tejas
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?