Telerik blogs

Latest

  • Web ASP.NET AJAX

    New ASP.NET AJAX sample app: Sales Dashboard

    Following the great success of the Silverlight/WPF Sales Dashboard -- a similar demo is now available for ASP.NET AJAX. See what we have built for less than a week with RadControls for ASP.NET AJAX, Silverlight RadChart, RadGauge and OpenAccess ORM!     Enjoy and make sure you check the source code for some helpful best practices! ...
    November 20, 2009
  • Web

    First Look at RadBook for Silverlight

    I am glad to announce the addition of one more control to our Silverlight suite. The control is called RadBook and it is a page-flip type of control that allows browsing through a set of items as if flipping the pages of a book. RadBook inherits System.Windows.Controls.ItemsControl, which allows you to turn any type of content into a RadBook's page. The main features of RadBook are: Ability to template every page by using LeftPageTemplate, RightPageTemplate, LeftPageTemplateSelector and RightPageTemplateSelector. Ability to change the way a page is flipped i.e. flip a page on a single click, double click or simply forbid page flipping. Ability to define...
    November 19, 2009
  • Web

    Customize the appointments in every resource group in Telerik Scheduler for Silverlight

    We have recently introduced a new feature  in RadScheduler for Silverlight/WPF -  Resource Grouping. Now I will tell you more about how to customize the look and feel of the appointments in every resource group including the header of this group. All you have to do is set a ResourceStyleMapping object associated with every resource:   Using this object you can set the following properties: ResourceName - the name of the resource that should be associated with this style ResourceType - the name of the type, to which the resource belongs ResourceBrush - the value of this property is used to set color of the header of the resource...
    November 19, 2009
  • Web ASP.NET AJAX

    Introduction to RadRating

    One of the new controls we added to the Q3 2009 RadControls for ASP.NET AJAX suite is RadRating. Even though this is the first release of the rating control, we made sure that it is packed full of excellent features and it has the same quality you have come to expect from the Telerik ASP.NET suite - cool skins, wide cross browser support, automated tests, and more.   You can see all of the control's features on its overview page, but I will list some of the major ones here as well: whole item/half item/exact precision; four possible orientations; customizable number of...
    November 17, 2009
  • Web ASP.NET MVC

    Using ViewModel objects to improve the Ajax performance of Telerik Grid for ASP.NET MVC

    In this blog post I will demonstrate how to squeeze the most from Telerik Grid for ASP.NET MVC when using Ajax binding. Lets start with a simple grid bound to the Northwind Orders table: View: <%@ Page Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage<IEnumerable<UsingDto.Models.Order>>" %><asp:Content ID="indexTitle" ContentPlaceHolderID="TitleContent" runat="server"> Home Page</asp:Content><asp:Content ID="indexContent" ContentPlaceHolderID="MainContent" runat="server"><%= Html.Telerik().Grid(Model) .Name("Grid") .Columns(columns => { columns.Add(o => o.OrderID).Width(100); columns.Add(o => o.Customer.ContactName).Width(200); ...
    November 10, 2009