Telerik blogs
  • Desktop WPF

    RadScheduler for WPF - Out of the box

    If you have a need for calendaring capabilities in your WPF application, look no further.  The RadScheduler brings you a number of capabilities with minimal effort.  I am going to discuss some of the core features that you get with the RadScheduler for WPF without implementing any code.  I thought a quick preview of what the control offers out of the box, might give you some ideas of how you leverage it in your applications.  To get started create a new WPF application and drop a RadScheduler onto the Window. <Window x:Class="WPFRadSchedule.Window1"      xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"      xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"      Title="Window1" Height="600" Width="800           " xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation">       <Grid>          <telerik:RadScheduler Margin="12" Name="radScheduler1" />      </Grid>  </Window>   The XAML above is a preview of what I...
    February 05, 2009
  • Web ASP.NET AJAX

    RadTips, Episode 8: Customizing the RadScheduler with Templates

    Welcome back to another episode of RadTips, a series of episodes offering tips and tricks for using Telerik's RadControls. If you've missed previous episodes, be sure to check them out. Each is only a few minutes long and covers a specific RadControl feature: 1 - Client-Side Data Binding in the RadGrid 2 - Client-Side Paging in the RadGrid 3 - Client-Side Sorting in the RadGrid 4 - Client-Side Filtering in the RadGrid 5 - Getting Started with the RadScheduler 6 - Using the LinqDataSource in your RadGrid ...
    October 09, 2008
  • Web ASP.NET AJAX

    RadTips, Episode 7: Customizing RadScheduler Appointments with Resources

    Welcome back to another episode of RadTips, a series of episodes offering tips and tricks for using Telerik's RadControls. If you've missed previous episodes, be sure to check them out. Each is only a few minutes long and covers a specific RadControl feature: 1 - Client-Side Data Binding in the RadGrid 2 - Client-Side Paging in the RadGrid 3 - Client-Side Sorting in the RadGrid 4 - Client-Side Filtering in the RadGrid 5 - Getting Started with the RadScheduler 6 - Using the LinqDataSource in your RadGrid  This Week In this episode I show you how to add resources to your RadScheduler which you can then assign to...
    September 25, 2008
  • Web ASP.NET AJAX

    RadTips, Episode 5: Getting Started with the RadScheduler

    I'm pleased to announce that another episode of RadTips is ready for your viewing pleasure. If you missed the first four episodes, I highly recommend you check them out as they covered the new client-side data binding feature of the RadGrid. This episode breaks away from the topic of the first four episodes and covers a new control: the RadScheduler for ASP.NET AJAX! The RadScheduler is a powerful scheduling control that can be used to create and manage appointments in the browser. Follow along as I give you the quick tour of the RadScheduler and show you how to get started...
    September 06, 2008
  • Web ASP.NET AJAX

    Working with RadScheduler recurring appointments on SQL server*

    UPDATED: Rebuilt project with the 2011 Q2 version of RadScheduler You might have noticed that RadScheduler uses very cryptic strings to describe repeating appointments. We have decided not to reinvent the wheel and in fact this format is closely based on the iCalendar (RFC2445) standard. Here is an example: DTSTART:20080218T000000Z DTEND:20080219T000000Z RRULE:FREQ=MONTHLY;INTERVAL=12;BYDAY=-2MO;COUNT=3;   This rule says: "The event starts at midnight on 18th of February 2008, lasts one day and repeats each year, for 3 years, on the second to last Monday of February". Now say this three times fast. As much as standards-based those strings are,...