DEAR *.*
How to Pass value on a report using querystring.
I created a webform1.aspx with textbox control and a button control, and my second form is webform2.aspx with a reportviewer control,
my questions :
How to pass the value on my textbox control in the webform1.aspx when i clicked the button to webform2.aspx using QueryString?
i'm using vb code..
please help
I have partial view:
@section head{ <script src="~/ReportViewer/js/telerikReportViewer-8.1.14.804.js"></script> <script src="~/ReportViewer/js/resources.hr-HR.js"></script> <link href="~/ReportViewer/styles/telerikReportViewer-8.1.14.804.css" rel="stylesheet" /> <link href="//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css" rel="stylesheet"> <style> #reportViewer1 { position: absolute; left: 15px; right: 15px; top: 65px; bottom: 50px; overflow: hidden; } </style>}@{ var typeReportSource = new TypeReportSource() { TypeName = string.Format("ATICRaspored.Reports.{0}, ATICRaspored", ViewBag.ReportName) }; typeReportSource.Parameters.Add("PredavacId", new Guid(((ClaimsIdentity)User.Identity).FindFirst("PredavacId").Value)); typeReportSource.Parameters.Add("AkGodId", ViewBag.AkGodId); typeReportSource.Parameters.Add("AkGodNaziv", ViewBag.AkGodNaziv);}@( Html.TelerikReporting().ReportViewer() .Id("reportViewer1") .ServiceUrl("/api/reports/") .TemplateUrl(Url.Content("~/ReportViewer/templates/telerikReportViewerTemplate-8.1.14.804.html")) .ReportSource(typeReportSource) .ViewMode(ViewModes.PRINT_PREVIEW) .ScaleMode(ScaleModes.SPECIFIC) .Scale(1) .PrintMode(PrintMode.AutoSelect))On button click I need to show my partial view inside kendo window. My code is:
@(Html.Kendo().Window().Name("ReportViewer") .Title("Izvještaj!") .Visible(false) .Modal(true) .Draggable(true) .Resizable(x => x.Enabled(true)) .Width(800) .Height(800))<script> $("#btnReportKolegij").click(function () { var site = site || {}; site.baseUrl = site.baseUrl || ""; var wnd = $("#ReportViewer").data("kendoWindow"); wnd.refresh(site.baseUrl + "/Home/_ReportContainer/" + '@Model.Id' + "/" + '@Model.GodineMerge.Replace('/', '-')' + "/EvidencijaOdrzaneNastaveKolegij").center().open(); });</script>
On click my window is opened but it's only showing "Loading..." as you can see on the attached image. Without kendo window and with simple view everything is working.
What am I missing?
Thanks
Hello Telerik team,
I want to know is there a possible way to render List box instead of drop down for my report parameters. I am getting by default is a drop down list.
Also please tell me if i can have my report parameters as vertically on right side instead on the header horizontally.
If it is not possible in Report designer (Standalone) then tell me what are my options to achieve it.
Thank You
Hello all,
i have a huge database in Oracle. I cant load it fully in the Standalone Designer. To set up filtering and so on, i try to limit the rows i receive from the DB.
Normally in Oracle, i use ROWNUM to limit the results:
SELECT * FROM HUGEDB WHERE ROWNUM < 100
When i use exact the same query in ReportDesigner, i get: ORA-00904 - "ROWNUM" invalid identifier.
It seems, that the ReportDesigner add some quotation marks around ROWNUM. How can i turn that off?
Or is there another way to limit the number of returned rows?
Thanks,
Tobias
Hi,
we're having an issue when we export our reports to Powerpoint: the proofing language of the document is correct but when we click into a text field the proofing language switches from German(Germany) to English(USA). This issue doesn't occur with Word.
The reports are set to Localizable True and the Culture de-DE.
Thanks in advance.
Hi,
Using the designer (9.2..15.930) to edit the TRDX on different machines causes tiny changes to the measurements as shown in the attached diff screenshot. This is a problem for source control as it introduces differences in the history which are not really relevant. Can anything be done about this?
Hi.
How can I style the square in and the marker in a checkbox? I need to border in the square to be 1px solid black (without the blue shading), and the marker to be black and not blue, as in the picture in the attached file.
The report is exported to pdf (where the picture is captured)
Hello Telerik,
I've been trying to set up a ReportsController, a WebApi and a view that all talks together. My view is in another project than my ReportsController and WebApi, since they are going to be deployed two different places.
I have followed your guides
- http://www.telerik.com/help/reporting/html5-report-viewer-embedding.html
- http://www.telerik.com/help/reporting/telerik-reporting-rest-host-http-service-using-web-hosting.html
- http://www.telerik.com/help/reporting/telerik-reporting-rest-implementing-http-service.html
Where I have made sure it worked (by first having the view in same project as the ReportsController and WebApi)
Now that I've split it up in two projects, I get the following warning
"Message": "No HTTP resource was found that matches the request URI 'http://localhost:49375/api/reports/clients'.",
"MessageDetail": "No type was found that matches the controller named 'reports'."
In the Global.asax.cs file, the following lines have been added (just under the AreaRegistration)
GlobalConfiguration.Configure(WebApiConfig.Register);
ReportsControllerConfiguration.RegisterRoutes(GlobalConfiguration.Configuration);
What am I doing wrong?