Telerik blogs

Latest

  • Web

    Silverlight vs HTML5 - WTF?

    It has been a wild weekend for sure. A slew of important announcements at PDC, sudden withdrawal of all Silverlight sessions, Bob Muglia’s statement about Microsoft’s change in plans, the uptake from journalists, the community uproar... A comedy of errors was unfolding in the technology space while I was happily spending my weekend enjoying my kid’s birthday and not thinking about dev platforms. So, I come in the office today and my inbox is blinking like crazy, mails from a ton of people from inside the company and out and the common question is – what are you/we doing with Silverlight?...
    May 27, 2021 5 min read
  • Web

    Website Enhancements - Changes in Your Account Section

    It’s been almost a year since we first introduced the first changes in “Your Account” section. The rapid expansion of Telerik’s product portfolio required new product management tools and logic. That led to a “Your Account” section consisting of four separate areas for the four product divisions. It was not easy to use and maintain. Now we are happy to introduce to you the new and improved “Your Account” section with better navigation and logic. Thanks to your valuable feedback, excessive research and hard work we managed to put all your registered products in one place so you can easily manage...
    May 27, 2021 3 min read
  • Web ASP.NET AJAX

    RadGrid for ASP.NET AJAX client-side databinding to OData services

    RadGrid's client-side databinding capabilities got boosted to a new level with the Q3 2010 release of Telerik RadControls for ASP.NET AJAX. RadGrid now supports automatic databinding to OData web services. For those of you who have never heard, OData (short for Open Data) is a data exchange protocol that enables data transactions to be carried over standard web protocols (HTTP, Atom, and JSON). OData exposes your data over the web to a variety of consumers, building on technology that is widely adopted. With the Q3 2010 release, we have added automatic client-side databinding support for OData services. To configure RadGrid for binding to an OData service, you...
    May 27, 2021 3 min read
  • Web

    How To: Hierarchy Load On Demand With RadTreeView for Silverlight, MVVM and OData

    Similar to this post, I’ve made a similar example on how to load on demand RadTreeView for Silverlight three level hierarchy using MVVM and OData service:  XAML  <UserControl.Resources>     <DataTemplate x:Key="OrderDetailsTemplate">         <Grid>            ...         </Grid>     </DataTemplate>     <telerik:HierarchicalDataTemplate x:Key="OrderTemplate"             ItemsSource="{Binding OrderDetailsCollection}"             ItemTemplate="{StaticResource...
    May 27, 2021 2 min read
  • Web ASP.NET AJAX

    RadScheduler for ASP.NET AJAX - Improvements to provider interface in Q3 2010

    The Q3 release RadControls will come packed with shiny features and a couple of new controls, but that’s not all! We’ve fiddled with the complex machinery under the hood and made it better too. Let me introduce you the new and improved provider interface (ABC, actually) for RadScheduler: public abstract class SchedulerProviderBase : ProviderBase {     public virtual IEnumerable<Appointment> GetAppointments(ISchedulerInfo schedulerInfo) { }     public virtual IDictionary<ResourceType, IEnumerable<Resource>> GetResources(ISchedulerInfo schedulerInfo) { }     public virtual void Insert(ISchedulerInfo schedulerInfo, Appointment appointmentToInsert) { }     public virtual void Update(ISchedulerInfo schedulerInfo, Appointment appointmentToUpdate) { }    ...
    May 27, 2021 2 min read