Telerik blogs

Latest

For the latest product updates, please visit Release.

  • Productivity Reporting

    Telerik Reporting: Using the PictureBox Item

    Telerik Reporting comes with all essential report items in the Visual Studio toolbox to help you more easily design rich reports. One such report item, the PictureBox, is used to display images on a report. The PictureBox is simple and easy-to-use like the other report items, but in this post I’d like to highlight a couple of its features so that you can take full advantage of its capabilities. Specifically, I will discuss the data binding and layout features that are unique to the PictureBox item. Data Binding Binding image data to a PictureBox report item is very straight-forward. If you’re using the...
    February 20, 2009
  • 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...
    February 18, 2009
  • Productivity Reporting

    Reporting 101 Webinar

    I recently hosted a Reporting 101 webinar where I gave an hour-long overview of Telerik’s Reporting tool. For those of you who missed it, and for those who would like to see it again, it is now available on Telerik TV for your viewing pleasure. Click here to view the Reporting 101 webinar on Telerik TV If you are interested in more advanced Telerik Reporting topics, stay tuned as I will be bringing you another Reporting webinar on Thursday, February 26th. The topic will be announced this week, so keep an eye on my blog or Telerik.com for more details. For those of...
    February 16, 2009
  • Productivity Reporting

    Bind Your Telerik Reports to XML Data

    One of the cool things about Telerik Reporting is that you can bind it to just about any kind of data source. Regardless of whether your data is stored in a SQL Server database, an XML document, or a simple text file, if you can read it into one of the supported data source types then you can bind it to your report. Since XML is a often used to store data, I thought it might be helpful to demonstrate how to bind your report to the data in an XML file using LINQ to XML. To get started, create a class...
    February 06, 2009
  • 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...
    January 16, 2009