Telerik blogs
  • Productivity Reporting

    Setting custom skin for the web report viewer

    I've been asked a few times by clients how to customize the web report viewer's skins, so they can better match their company identity. I would try to describe 'the process' in this post. We are trying to stay close to the approach used for the RadControls for ASP.NET AJAX, so one who has used our web controls would be pleasantly surprised to find two familiar properties in Telerik Reporting - Skin and SkinsPath. As their names suggest, the first one is used to specify the name of the skin, while the second one specifies the path where this skin can be found. Let's start with...
    May 27, 2021 2 min read
  • Release

    Telerik Reporting Q1 2009 SP1 is now live

    Once again our constant urge to provide you with the Telerik quality you're used to, resulted in Q1's first service pack of Telerik Reporting. It's needless to say that it contains important bug fixes and improvements of the product and to our new "players" - the Table and HtmlTextBox items. Here is a brief overview: Added support for multi-page view in the Win Report Viewer - although it is not common to include new functionality for a service pack, we decided to push this through instead of making you wait for the Q2 release. This has been long awaited feature for many of you, so do give it a spin. Next thing...
    November 05, 2024 2 min read
  • People

    Free Whitepaper: Understanding the What, Why and How of Reporting Solutions

    Often we see requests from our Telerik Reporting clients to produce PDF or HTML representations of tabular data in order to be able to print the data on paper and/or to create a document. Although this is a common scenario, the proper tool or product has to be used in order to get the best possible results. Telerik Reporting supports these document formats, but often it is mistaken for a format conversion tool (say HTML to PDF), rather than a report generation tool, only because it supports these two formats. We also see a common misconception that Telerik Reporting is...
    May 27, 2021 2 min read
  • Productivity Reporting

    Reporting: assembly scoped user functions

    Hi guys, We've been having requests for the feature in the title for some time and finally we were able to introduce it in the Q3 SP2 release.  Generally user functions allow you to extend the default behavior of the Telerik Reporting engine. They are public static  (Public Shared in VB.NET) methods that should always return a value and can take an arbitrary number of input parameters depending on your needs. They are public static, because they are not related to a concrete instance of a report. They are executed by the expression engine and work in the context of the report processing. If you...
    May 27, 2021 2 min read
  • Productivity Reporting

    Reporting: How to set default value for a multivalue parameter

    Generally when you want to set a default value for a parameter, you use the Value property of the parameter (this.ReportParameters["MyParam"].Value), but what to set when you want all values to be selected by default  i.e you have a multivalue parameter? You can do that by providing an ArrayList containing all your values to the report parameter Value property. For consistency of the Tips & Tricks series, I am going to use the project from the Using Report parameters UI to sort by column blog post. Let's make the SortByColumn parameter accept multivalues by setting the MultiValue property to True. We...
    May 27, 2021 2 min read