This is a migrated thread and some comments may be shown as answers.

custom datasource ASP.NET MVC

0 Answers 71 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
Luis Ismael
Top achievements
Rank 1
Luis Ismael asked on 19 Feb 2018, 08:09 PM

Hello, someone has some idea how to customize reporting

I do the following

 @(Html.TelerikReporting().ReportViewer()
            .Id("reportViewer1")
            .ServiceUrl(Url.Content("~/api/reports"))
            .TemplateUrl(Url.Content("~/Content/ReportViewer/templates/telerikReportViewerTemplate.html"))
            .ReportSource(Model.TheReport)
            .ViewMode(ViewMode.Interactive)
            .ScaleMode(ScaleMode.Specific)
            .Scale(1.0)
            .PersistSession(false)
            .PrintMode(PrintMode.AutoSelect)
            .EnableAccessibility(false)
            .Deferred()
    )

public class ReportController : Controller
    {
        // GET: Report
        public ActionResult Index()
        {
            Uri uri = HttpContext.Request.Url;
            var changeReport = new ReportController().Identification(1, uri);
            return View(new ReportModel() { TheReport = changeReport});
        }
             // Controls

    
            var txtName = ((Telerik.Reporting.TextBox)report.Items.Find("txtName ", true)[0]);
            txtName.Value = !string.IsNullOrEmpty(name) ? name.Trim() : empty;

No answers yet. Maybe you can help?

Tags
General Discussions
Asked by
Luis Ismael
Top achievements
Rank 1
Share this question
or