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...
I'm very happy to announce that today we released the second CTP of RadControls for WindowsPhone 7. You can download the new installer and the new binaries now. In the last month we were working on polishing the existing controls, examples and help, but we also added new features and controls to the suite. Now we have 16 controls for Windows Phone 7 ready for use! Not only this, but you can now optimize the size of your windows phone 7 application by using the hot new version of the Telerik XAP minifier. Did I mentioned that our Demo application is now...
We all check the weather before we leave our homes, when planning our business trips, when we take our loved ones on vacation. The weather is something we talk about and we all have our own way of reacting to it as it more often than not it affects our mood. So how do we deal with it? We try to stay informed and the coolest way to do that is with the Telerik’s Weather Station application. The Weather Station was designed to mimic a real world weather application. By navigating through the map-based user interface, you can both select some...
Ever since our Q2 2010 release back in July, our testing tools team here at Telerik has been busy working on a fantastic new set of features to our QA automation suite, WebUI Test Studio. Just a couple weeks ago, all their hard work paid off with the official launch of our Q3 2010 release. We have created a series of videos highlighting how to use all the new features of WebUI Test Studio, these videos will help you get started quickly! Webinar - What's New in Q3 2010 WebUI Test Studio Scheduling Test Lists for Remote Execution - ...
What's new in Telerik Minifier It is a huge pleasure to announce the release of Telerik’s new Minifier tool now featuring Xap file minification option. It has been a while since we have released the Assembly Minifier and now we bring the concept for minification and reducing the XAP file size to a new level. We have just released the new Telerik Minifier tool that now features Xap Minification to enable you prune and remove everything that your application does not need from the Telerik assemblies in the Xap. As a result, the size of your application's Xap file will be dramatically reduced. Behind the scenes it...
Thanks to all who attended last weeks What's New in Q3 2010 - WebUI Test Studio Webinar. Here is the blog post I promised to address all the questions that came in during the session! Q: Is it possible to use data extraction to drive a navigate to? A: Yes, this is indeed possible, simply extract the value from an HREF element, create a variable, and data bind the 'NavigateURL' property. Q: Love the product, any plans for a WPF version?
A: We are in the process of finalizing our automated testing roadmap for 2011, however chances are good ...
Many of you have probably used Telerik's TreeView or going to do so in the future. One of its many features is the TriStateMode. In this blog post I'm going to explain how TriStateMode mode is designed to work and propagate the values up and down the tree. When in TriStateMode (IsTriStateMode=”True”) checking/unchecking an item makes the TreeView propagate the value. The value propagation actually checks/unchecks all items’ children and updates the chain of parents with appropriate value (checked, unchecked or undetermined). CheckState vs. IsChecked The TreeView exposes two properties used to manipulate items' check state - CheckState (of type ToggleState) and IsChecked...
Download ODataSample (C# VS2010) - 167KB Download ODataSample (VB VS2010) - 180KB The Open Data Protocol, also known as OData recently has gained a lot of popularity. That is why we decided to demonstrate how to connect and consume an existing OData feed from Telerik Reporting with the help of WCF Data Services. For the sake of this example we will connect to the Northwind sample database exposed as an OData service with the following root URL: http://services.odata.org/Northwind/Northwind.svc. Let's start by adding a service reference to the Northwind data service to our report class library - we use the above service URL for this purpose: Visual Studio creates a reference to the service...