Telerik JustMock received many new features in the service pack for the Q3 2011 release, enhancing the mocking framework’s impressive ability to mock almost everything. Let’s take a look at a few highlights of JustMock Q3 2011 SP. Mock Inside a Threadpool Mock objects can be accessed inside of another thread and work as expected. var mockable = Mock.Create<Mockable>();
Mock.Arrange(() => mockable.IsMocked).Returns(true);
bool mocked = false;
var latch = new WaitLatch();
ThreadPool.QueueUserWorkItem(cookie =>
{
try
{
mocked = mockable.IsMocked;
}
finally
{
...
If you have had your ear to the ground of the interwebs over the past 48 hours, you may have seen that our very own John Bristowe launched a brand new site called jqueryuivskendoui.com. It’s been making the rounds through Twitter, Hacker News, Reddit and various other places. Additionally...
Imagine the scene. You are starting a new project. At the kickoff meeting the stakeholder introduces the mission of the project, the business analyst hands out the requirements document, the project manager hands out the project plan, and the development manager gives his best “Do it for the Gipper” speech. You look through the project plan and see that it specifies a release date (several months in the future), the resources that will be involved, major milestones to be met, and everyone’s assignments. The team looks over the stack of paper in front of them, and roll their eyes. “Here ...
Choosing appropriate identifiers for the constructs in your code provides better readability and maintainability. With the latest build of Telerik JustCode you can now easily set naming conventions for all your code elements. Configuration and Supported languages These rules can be set for C# and VB.NET and are part of the Code Style section of the JustCode options dialog: These options are part of the shared settings so you can share them per solution as well. Naming Rules There are seven types of rules that a user can choose from: camelCase PascalCase UPPER_UNDERSCORE lower_underscore Sentence_underscore PascalCase_Underscore camelCase_Underscore You can also disable the naming convention for a specific construct. Just choose “Disabled” from the rules...
I am happy to announce the immediate availability of the Telerik MVC Extensions Q1 2012 Beta release! With it comes the longed-for Area chart type as well as a bunch of new features for the majority of the existing chart types supported by our MVC charting. We are also shipping a plethora of small and medium-sized features across all the Telerik MVC extensions, as well as formal support for the Chrome 16 and FireFox 10 browser versions. I won't go into much detail about each and every new functionality delivered with the Beta and, consecutively, the upcoming official major release...
Download the demo project Download the Q1 2012 BETA RadSlideView is one of the major and widely used controls in our RadControls for Windows Phone tools. For the Q1 2012 BETA release we completely revamped its architecture and API design to meet all the feedback and feature requests we gathered from our users. Instead of inheriting from RadLoopingList, the control now inherits from the abstract DataControlBase class and exposes properties and methods similar to the ones found in our RadDataBoundListBox. We believe this approach will have better adoption and will be more intuitive to you – our users. This re-design allowed us to improve performance...
Hello everyone and welcome back to XAMLflix with RadBarCode for Silverlight and WPF. What is XAMLflix you might ask? Well, it is Telerik’s way of teaching you how to use both new and existing controls from Telerik’s XAML suite. Each and every Thursday, we will provide a fresh batch of videos and sample projects highlighting a different control. Since our Silverlight and WPF share a common codebase and API, you only have to learn how to use these controls once! You can simply copy and paste the code between frameworks. If you are eager to get started then go ahead and download...
RadDataBoundListBox has been continuously developed and extended with new features like Item Animations, CheckBoxes support, Data Virtualization support etc. We have also fine-tuned its performance so that it perfectly fits in an environment of limited memory and CPU resources what a mobile phone is. You can see here a real-world scenario based comparison between RadDataBoundListBox and a standard ListBox control putting both UI Virtualization approaches head to head. With Q1 2012 Beta we are introducing an entirely new feature which also paves the way for a more complex and performance-optimized Wrap Virtualization Layout: Horizontal Scrolling. A nice example is available in our Demos app...
Though the time since the last official release, Q3 2011, and today’s release of the next Q Beta is a month shorter than usual, I am happy to present you the early preview of the Q1 2012 version of Telerik’s Controls for ASP.NET AJAX. Thanks to the hard work of the AJAX team members, we were able to include all of the major features here in the Beta version. And as most of them have been highly requested by you for some time now, I am sure you are eager to get them. But let’s stop wasting time and see...
Two weeks before the official Q1 2012 release we have prepared a Beta package containing all the new stuff that we have been working on the previous months for you to check out. There are some brand new components, as well as cool new features in RadSlideView, RadDataBoundListBox and RadBusyIndicator. Let's start with the newborn components available in RadControls for Windows Phone Q1 2012 Beta: RadToolTip - this is a control that allows you to display a popup associated with a given visual element on your page. This popup may contain any type of information, like additional details or some hints. We have a...