We're proud to have Test Studio included in the Automated Testing Institute's annual Honors poll of top industry-wide tools and resources! The poll breaks out different areas of tooling, presentations, blogs, and other resources, so it's a great poll to read simply to find other areas of testing to investigate. Please take a moment and stop by the poll. Of course we'd appreciate your vote for Test Studio! (And if we don't get your vote, please let me know why. I'd love your feedback via the comments here or direct mail [Jim.Holmes@Telerik.com])
Today we’re starting a new endeavor in the Xaml teams at Telerik to bring a new demo application your way. The application that we have in mind is a Customer Relationship Management (better known as CRM) solution intended to help a fictional sales person through the trials and tribulations of his day-to-day experience. Now keep in mind, we’re not looking to make an application that gets sold under the Telerik banner, rather this is an exercise to see how UX, design, architecture, and our team of eight can work together to produce and explain a brand new demo featuring some...
With the Q2 2011 release the Data Visualization team at Telerik released a beta version of two new controls: RadPivotMap and RadTreeMap. These two controls represent Telerik’s offering for treemap type visualizations. Probably the first question that comes to mind is why have we shipped two separate controls for what seems to be the job for one? This question is what this blog post is about. Keep reading. When we started our work on Telerik’s tree mapping product we took a step back and researched how these kinds of visualizations are used. We did an extensive research on what kinds of data...
Hey Windows Phone lovers, it has been a busy two weeks since we had release webinar week. We've seen the release of Visual Studio LightSwitch and the Telerik Hands-On-Labs that I wrote for that release, we've been prepping some really neat content that will start making some waves soon (check back tomorrow!), and of course we have been hard at work on creating learning resources to cover everything that was release during this latest round. So of course part of that is packaging up the demos and slides from the Q2 presentations as well as covering some of the great...
Constructors are a necessary element of class design that typically involves repetitive work. Language teams try to reduce verbosity by moving patterns into language features. Where this terseness doesn’t exist, tools such as Telerik JustCode can alleviate some of the work to make a smooth coding experience. Today, I will introduce a few features that make creating constructors easier. Blank Slate Let’s start with a simple Employee entity class. public class Employee
{
public int Id { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
...
Part of what I’ll be blogging about over the next few months is my journey to become an expert with Test Studio. I’m not an expert yet, but I do bring a long history of applying tooling and frameworks to solving real-world problems, and I’m going to be working through many of those same problems in short order—figuring out how to solve those same problems is an awesome way to learn a new tool or framework’s strengths and weaknesses. I hope that by sharing my discoveries I’ll help you work through some of the same common problems! First up in ...
Spatial data is all the rage, everyone wants a map in their application to quickly visualize data. In a previous blog I showed how you could query, and display, SQL Spatial data on RadMap for WPF using Telerik OpenAccess ORM. In this blog, I will show you how to display the data on RadMap for Silverlight. This adds a slight twist because we need to transport the SQL Spatial data across a service boundary, but thanks to some updates in RadMap this is still an easy process; so lets take a look! Database Setup The first thing we need is some spatial data. In...
SharePoint provides types and members in the Microsoft.SharePoint.Client namespace for accessing SharePoint remotely from a client computer or server. To get started with SharePoint client object model you will need Microsoft.SharePoint.Client and Microsoft.SharePoint.Client.Runtime assemblies. You can copy these DLLs from the %ProgramFiles%\Common Files\Microsoft Shared\web server extensions\14\ISAPI folder of the server that runs Microsoft SharePoint Foundation 2010. Using the Microsoft.SharePoint.Client types you can get access to SharePoint List data. However in order to have design time support (Telerik Reporting Data Explorer, Wizards and Expression editor) with SharePoint as data source, you will need the following SharePointDataSource helper class. This class manages the SharePoint credentials,...
One of the new features of the chart control for the Q2 Beta2 release is an API for behaviors. We decided do decouple the chart from some of its features and make them separate objects for the usual software development reasons. Now RadChart has a Behaviors collection that accepts ChartBehavior objects. Whenever an object is added to or removed from this collection a feature is either enabled or disabled in a RadChart instance respectively. We provide three behaviors out of the box and these are ChartPanAndZoomBehavior, ChartTrackballBehavior and ChartToolTipBehavior.
The tooltip behavior allows the chart to show a tooltip wherever the user taps...
I like agile user stories. They make sense to me. 15 years ago – I wrote a lot of “Use Cases”. As use cases seemed to have some components I liked – they frightened and intimidated me - I found that as use cases would gradually become more complicated and cumbersome to write – I spent all my time writing, debugging, and maintaining them – yet, I found I was still not communicating with my customer or my development team very well. Quality didn’t improve. We still were at risk of building the wrong product. Agile User ...