Telerik blogs

Latest

  • Release

    Telerik Releases Data Services Wizard Beta-Now supporting VB…

    Telerik is proud to announce that the Data Services Wizard beta was released today. If you have used the wizard while it was a Telerik Labs project, you will notice a ton of new features and improvements. If you are new to the wizard, now may be a good time to give it a try and give us your feedback. The Data Service Wizard works with Telerik OpenAccess Q3 or higher and Visual Studio 2008. Our next beta, due in February, will support Visual Studio 2010 and WCF 4.0. The wizard will create a service layer for you using “Astoria” 1.0, the latest version of “Astoria”, WCF, or the WCF...
    January 20, 2010
  • People

    Telerik Wins the Red Herring Global 100 Award

    Telerik has been named to the Red Herring Global 100 Award list.  The Global 100 is Red Herring’s list of the top 100 privately held global tech companies. This is like the Fortune 500 list but for tech. This is a huge deal, past award winners include Google, Yahoo!, Skype, Netscape, Salesforce.com, and YouTube. Telerik is an Eastern European company with headquarters in Sofia, Bulgaria and the only company on the Red Herring Global 100 from the former “Soviet Block.” That the company's founders grew up under communism and last week were speaking at the Red Herring 100 award ceremony about capitalism, innovation, and technology is totally awesome. Shows you how...
    January 19, 2010
  • Web

    Highlighting Inline Search for RadGridView for Silverlight

    A common request on our forums is how to enable the Search As You Type online example to search in DateTime or Integer properties. Also recently another request was brought to our attention: How to highlight the matching search text in the grid cells. In this blog post I’m going to show you how to achieve these goals.   Let’s start our journey, by looking at the MainPage.xaml of the attached sample application:     1 <UserControl x:Class="DateTimeFiltering.MainPage"     2    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"     3    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"     4    xmlns:telerik="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.GridView"     5    xmlns:themes="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls"     6    xmlns:i="clr-namespace:System.Windows.Interactivity;assembly=System.Windows.Interactivity"     7    xmlns:local="clr-namespace:DateTimeFiltering"     8    xmlns:jeff="clr-namespace:JeffWilcox.Samples;assembly=HighlightingTextBlock">    ...
    January 18, 2010
  • Release

    Introducing: Public Issue Tracking System

    We are proud to announce the launch of Telerik's interactive issue tracking system! Now you can suggest features or report bugs for all Telerik products and then track the progress of your feature or download the latest build with your fix. The voting functionality allows you to raise the priority of issues and thus expedite their solutions. The shiny application is built entirely from scratch and uses the stylish RadControls for Silverlight for displaying data. Although the first version is with a Beta tag you can explore almost the entire functionality of PITS and see how Telerik Silverlight controls handle real...
    January 18, 2010
  • Release

    RadControls for ASP.NET AJAX Q3 2009 SP2 available

    At the end of the previous week we uploaded a new service pack for our ASP.NET AJAX controls. If you want to get your hands on the enhancements/fixes available in it, grab the bits from your account and upgrade the controls in your apps following the directions from here. For a complete list of the changes refer to the release notes page below: RadControls for ASP.NET AJAX Q3 2009 SP2 release notes
    January 18, 2010
  • People Humanity

    We Are Microsoft Charity Challenge Weekend 2010

    This past weekend, Todd Anglin, Gabe Sumner, Joshua Holt, Matthew Shoemate (my brother), and myself headed up to Dallas, TX to participate in the We Are Microsoft Charity Challenge Weekend. We Are Microsoft is a three day event that pairs development teams with different charities to develop applications for those charities. These application typically come in the form of new websites, modules for existing websites, etc. The charity we got paired with was We Help Ourselves. We Help Ourselves is a charity organized a run by a wonderful group of people, including, in particular, Mike Gelhausen and Mary Elizabeth Parra. ...
    January 18, 2010
  • Release

    Telerik XAML controls Q3 2009 SP2 is now live

    The Q3 2009 SP2 of RadControls for Silverlight and RadControls for WPF has just been released and the files are available for download under the users' accounts - both trial and dev versions. Full Release notes can be read at: RadControls for Silverlight Q3 2009 SP2 Release Notes RadControls for WPF Q3 2009 SP2 Release Notes   You can also refer to our public RoadMaps for Q1 2010 about RadControls for Silverlight/WPF for more information about what is coming after this service pack release....
    January 15, 2010
  • Web

    How To: Print your DataGrid (or any UIElement) on multiple pages with Silverlight 4

    In Silverlight 4 you can use PrintDocument to print easily any UIElement: …    var doc = new PrintDocument();    doc.DocumentName = YourDocumentName;    doc.PrintPage += (s, e) =>    {         e.PageVisual = YouUIElement;    };    doc.Print(); … and I’ve made an extension method that can be used to print any UIElement on multiple pages: public static void Print(this UIElement source, string documentName) { ...
    January 15, 2010
  • People

    Win a pass to MIX10!

    Our friends from SilverlightShow are running a Silverlight Eco Contest and are giving 3 passes for MIX10 in Las Vegas. Here’s an excerpt from their site: "Considering the alarming consequences of climate changes, and the actions taken to promote and carry out environmental-saving activities worldwide, we would like to give our share and show the power that web applications have to convince, persuade, and spread the word!"   Telerik is sponsoring the contest - you can win a "Telerik Premium Collection for .NET". Unfortunately I will not be able to submit my own application  - I have the honor of being a judge in the contest - so I will have the pleasure...
    January 15, 2010
  • Web ASP.NET MVC

    Using Silverlight Upload control with ASP.NET MVC

    [Download the complete final project] We got a customer inquiry today about how to integrate the Telerik Silverlight Upload control within an ASP.NET MVC site. This is quite an interesting scenario, especially with the new Drag and Drop from the file system coming with our Silverlight 4 release in the mid-March. I was not sure what should be done to run the SL upload in the MVC site. This was my first time experience with ASP.NET MVC 2 and it turned out to be a very pleasant and easy one. These are the steps that need to be followed: 1. Create an ASP.NET MVC site: 2....
    January 15, 2010