http://internship.dreamture.net is the new blog of this summer's design intern at the UX department here in telerik, where Dimitar Raykov will regularly upload his ongoing work on the weekly internship assignments. Following a successful attempt to accommodate an intern a couple of years ago, this summer we wanted to expand the effort with a program that gives not just a preview of an actual work environment, but also has a more academic side to it with a chance to experiment within the design practice. Before I laid out the program I did some research on existing programs elsewhere but failed to find...
That's right, SP1 for Visual Studio 2008 and .NET Framework 3.5 went live today. You can read about the highlights here, or just go download the service pack and check it out for yourself. WPF designer support in the IDE and WPF performance increases in the framework were big items delivered in this service pack. Also included is the ADO.NET Entity Framework, ADO.NET Data Services, and support for SQL Server 2008. This release comes on the heels of the release of SQL Server 2008 just a few days ago....
Every once in a while we receive support about how to create hierarchical grid directly from objects hierarchy and I decided to post small example how to achieve this easily: protected void RadGrid1_NeedDataSource(object source, GridNeedDataSourceEventArgs e)
{
RadGrid1.DataSource = MyList;
} protected void RadGrid1_DetailTableDataBind(object source, GridDetailTableDataBindEventArgs e)
{
e.DetailTableView.DataSource = MyList.Find(
delegate(Master master)
{
return master.ID == Convert.ToInt32(e.DetailTableView.ParentItem.GetDataKeyValue("ID"));
...
In my previous blog post I told you how the Web Service load on demand mode of RadTreeView delivers the best performance. A logical question arises - why we have the other load on demand modes (server side postback and callback) if they do not perform on par with the Web Service mode. The answer is not that obvious. The truth is every load on demand mode has its pros and cons. The following table describes visually the load on demand modes according to three criterions - performance, templates support, ease of...
I recently released the first two episodes of my new screencast series, RadTips. In these episodes I show users how to take advantage of the new client-side databinding feature of the RadGrid (only available in the Q2 2008 release of RadControls for ASP.NET). I wanted to highlight what we consider to be a best practice when using the RadGrid's client-side API to do your databinding, something I didn't do in either of the episodes. While client-side databinding can save some bandwidth and improve round-trip speeds on subsequent requests, it is actually faster to to bind data to the RadGrid on the...
As announced by Vladimir RadControls for WPF FUTURES suite is out and we already started to get your feedback. Vladimir and Todd have already drawn you attention to RadChart for WPF, so I decided to show you RadGauge -- another product from the same suite. You wouldn't be surprised to know that RadGauge will allow you to visualize various measurements in completely customizable manner. Here are some of the main features: Linear scales - RadGauge offers linear scales, the length or the position of the indicator over a line/bar will measure the value. There can be 4 types of indicators - elements, that point to a...
That's right! For those of you who have been looking forward to the RTM, the wait is over: SQL Server 2008 has finally been released. It's already available on MSDN. If you haven't played with the new version yet, there are plenty of resources to help you get started. Check out some of these videos to learn what's in the new version, or look for "Programming Microsoft SQL Server 2008 (PRO-Developer)" by Telerik's own Stephen Forte later this year. If you don't have an MSDN account and want to try out the new version, you can download the release candidate from the SQL Server...
Yeah, I know, it's been quite some time since my last post. The ideas keep coming though and I’ve just realized there is no better time for a QA to blog than ... the summer. Do you know why? Well, just because of the summer time! You know, devs are humans too and they also need to rest a bit. ;) I can at least stop bugging around for a while and post some nice, interesting content. I'm afraid the list of ideas for my future posts is already quite long. However, since I'd like to share the most fascinating ...
We'll be releasing officially a very exciting new product in Q3 2008. The game is on - would be fun to see your comments. If you provide a correct answer, you will get a cool Telerik T-shirt:)
A common scenario for a treeview control is to populate it with lots of nodes. Adding a few thousand nodes initially is not a good idea though. Think of all the rendered HTML. Even rendering a few thousand strings (without any extra markup) will result in a few megabytes of HTML. That's where load on demand comes into play. RadTreeView supports three different types of load on demand: web service, server side callback and server side postback. From those the server-side postback mode is least efficient in terms of performance because it postbacks and updates the whole page. Here is how...