A few weeks ago, the Q3 2010 release made its official appearance. This release marked the addition of various new features across all Telerik products. As with every release, we try our hardest to create video tutorials corresponding to each new product feature. In these videos we generally write the code to some sort of example application. Often we receive requests for this code, so I thought I would save you the trouble of asking and post the code to the Telerik Reporting videos here in this blog entry. Here is a list of all videos related to Telerik Reporting ...
A few weeks ago, the Q3 2010 release made its official appearance. This release marked the addition of various new features across all Telerik products. As with every release, we try our hardest to create video tutorials corresponding to each new product feature. In these videos we generally write the code to some sort of example application. Often we receive requests for this code, so I thought I would save you the trouble of asking and post the code to the RadControls for WinForms videos here in this blog entry. Here is a list of all videos related to RadControls ...
We have recently uploaded the Weather Station demo showing some of Telerik controls for Silverlight in a great rich context. Following Kalin’s blog post announcing the main features, this one is to provide some notes on the technical side of the matter.
Here is a list of the main features: Find client’s location upon startup and retrieve weather information if available. Store current locations and favorite ones in the local storage for proper loading on next startup of the application. Use two formats for weather values - Celsius and Fahrenheit. Search for custom location. Display brief location information (on smaller zoom levels) as well as...
Successful synchronization in TeamPulse depends on stories and tasks having a workflow (statuses and transitions) that matches the workflow of the Team Foundation Server (TFS) work item type they are mapped to. If your TeamPulse project was created with the “TeamPulse” project template, there is no out-of-the-box TFS process template that will allow you to easily synchronize your TeamPulse data with TFS. For this reason, the TeamPulse v1.0 TFS process template has been created. When to use it The TeamPulse v1.0 TFS process template should be used if both of the following conditions are met. 1. You have an existing ...
Hello everybody! I am Yavor Ivanov and I work in the DataVisualization team here at Telerik. As Vladimir mentioned earlier in his blog post, the Q3 release focuses on dashboards and line of business applications and today I am happy to announce another result of this focus: the RadBulletGraph! The Bullet Graph is created by Stephen Few and it is designed especially for dashboards. This little wonder is very data intensive and easy to read at the same time. In just one Bullet graph you can demonstrate both what your projected and your accomplished goals for a period are, specify qualitative...
A common scenario when using the ScheduleView control is to have custom appointments with additional properties that are not by default included in the standard Appointment class. In these cases simply extending the Appointment class is not enough, because we have some more requirements – we want our custom properties to support cancelation of editing (like the standard one does), we want to allow the user to edit the custom properties using the Appointment edit dialog and eventually to render values of the custom properties in the AppointmentItem or/and its ToolTip. In this article we will go through the following steps:
Create a custom appointment...
This year’s European TechEd was a very interesting experience both for us – the guys at the Telerik booth, and for all of you that came to visit it and see what we have been doing lately. We were amazed by the variety of questions you had for us (showing that our whole product line is well-known and widely used) and therefore we would like to say a big Thank you! One of the intriguing aspects of this year’s TechEd and our participation there was our new RadControls for Windows Phone 7 suite that was in its first CTP version by...
Many teams are struggling to deliver quality software on time yet keep up with quickly shifting business requirements. This is why the agile development methodology is gaining momentum as it allows software teams to be more flexible and adaptable to customer needs. Testers’ role is gaining new perspectives too. The agile development model involves testing as early as possible. This is usually done by using automated agile automated testing tools to minimize the amount of manual labor involved. If you want to learn more about automated testing in agile teams, join us for the free “Automated Testing in the Agile Environment” webinar on...
With this short post I’ll explain how to achieve a functionality similar to the one shown bellow. Unable to display content. Adobe Flash is required. The key to achieving this scenario is to use Behaviors. Start off by adding a reference to the System.Windows.Interactivity.dll which is located in: [WPF] C:\Program Files (x86)\Microsoft SDKs\Expression\Blend 3\Interactivity\Libraries\WPF\ [Silverlight] C:\Program Files (x86)\Microsoft SDKs\Expression\Blend\Silverlight\v4.0\Libraries\ (note: the location of the binary might be different on your machine) Then create a class called AutoScrollBehavior.cs using System;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Interactivity;
using Telerik.Windows.Controls;
using Telerik.Windows.Controls.DragDrop;
#if SILVERLIGHT
using EventManager = Telerik.Windows.EventManager;
#endif namespace TreeView.AutoScroll
{
public class AutoScrollBehavior : Behavior<RadTreeView>
{
protected override void OnAttached()
{
...
It has been a while since my last blog post on the topic but now that the Q3 2010 release is up and running, it is time to slow down a bit and restart my writing practice as well. The major highlight for the Data Visualization Team at Telerik for the past months was improving (enabling) the development of real-world business dashboard scenarios with the controls part of the RadControls suite. My colleague Vladimir already blogged about one of our newest additions (the RadSparkline set of controls) and we will be introducing RadBulletGraph in greater detail shortly as well but today I will focus your...