Web
ASP.NET AJAX
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) { } ...