Telerik blogs

Latest

  • People

    The Telerik Menu

    The Telerik Visual Studio Extensions are now included in the RadControls for ASP.NET AJAX and RadControls for Silverlight installers in order to make the development of applications with Telerik RadControls faster and easier. The main entry point for the Visual Studio Extensions is the Telerik menu. It is context sensitive and changes its state depending on the projects you are working on. 1) Create New Telerik Project menu item This state can be observed when no solution is opened or the currently selected project is not suitable for use with RadControls. Using the Create New Telerik Project menu item you can create a new Telerik Project with...
    May 27, 2021 2 min read
  • People

    Telerik @ TechEd Europe 2009 in Berlin – Day 4

    While we are approaching the end of an intensive week, our colleagues are getting ready for PDC next week. If you have a chance to go there, visit our booth to see our brand new Q3 release and don’t miss to get one of our new cool T-Shirts ... Here we go with the last impressions from the show:     Still 1 day to go but that’s it here from Berlin. Thanks again to all the people having visited us from 51 countries. Looking forward to seeing you again next year....
    May 27, 2021 1 min read
  • Productivity

    Using Telerik OpenAccess with Visual Studio 2010 Beta2

    digg_url = "http://www.stephenforte.net/PermaLink,guid,bb9d49fd-982f-433b-9617-547de01a7978.aspx";digg_title = "Using Telerik OpenAccess with Visual Studio 2010 Beta2";digg_bgcolor = "#FFFFFF";digg_skin = "normal";digg_url = undefined;digg_title = undefined;digg_bgcolor = undefined;digg_skin = undefined; Just a few weeks ago Microsoft released Visual Studio 2010 Beta2. Last week Telerik put its Q3 release live into production. One of the cool new Q3 features is that OpenAccess now works seamlessly with Visual Studio 2010. That means you can target .NET 3.5 or .NET 4.0 using either Visual Studio 2008 (.NET 3.5) or Visual Studio 2010 (.NET 4.0). I will do a quick demo with Visual Studio 2010, SQL Azure, and OpenAccess. With OpenAccess Q3 installed, I fired up Visual Studio 2010 and started a console project targeting .NET 4.0 While the project will target the .NET 4.0 Framework, we have to do one small thing to make...
    May 27, 2021 3 min read
  • Desktop WPF

    How to: Create custom editor with RadGridView for Silverlight and WPF

    If you need a custom editor to edit a specific data, you can use one of the following approaches:   Use CellEditTemplate property of the GridViewColumn. Create a custom column by inheriting from GridViewBoundColumnBase.   As almost anything in our life both approaches have some advantages and disadvantages. Although it is quite easy to implement the first option, there are some significant disadvantages like not so usable with many RadGridView instances, and more important this bypasses the RadGridView validation and editing engine. For more information about this approach you can take a look at this online example.   In this blog post I’ll try to explain how to...
    May 27, 2021 5 min read
  • People

    Fairfield / Westchester Code Camp 2009

    So this is not my normal type of post, but I wanted to take a moment to thank the folks over at the Fairfield / Westchester Code Camp for a great time this past Saturday.  They had 24 sessions going over 4 tracks to cover the day, with a lot of great content on everything from my personal favorite, Silverlight, to Azure, F#, Poweshell, and a ton more.  Looking forward to all of the presentations being posted online so I could see some of what I missed.     Telerik was one of the sponsors for this awesome code camp, but aside from...
    May 27, 2021 2 min read
  • People

    Telerik @ TechEd Europe 2009 in Berlin – Day 3

    Steve did great presentations today about “Daily Scrum” and “Tools and Agile Teams”. Since he is always coding in his presentations using the latest technologies and releases he made it to use VS2010 with OpenAccess. Watch his Blog this week about this topic.   As expected, we did run out of our famous .NET Ninja T-Shirts today but had some Geekette T-Shirts left. So people started to get used to the new look:        Thanks so far to the more than 1000 people having visited our booth.   2 days to go …...
    May 27, 2021 1 min read
  • Release

    What’s new in RadChart for Silverlight Q3 2009

    It has been a busy Q for the data visualization team at telerik! Our flagship chart product saw many improvements and new features the last four months and today I will summarize the most important ones for you. Here are the 5 big ones:   1. Grouping and Aggregation – RadChart now utilizes our powerful data engine already present in the RadGridView control to allow for a really fast grouping and aggregation of data. This comes built-in and works with all supported data sources! You can read more here. 2. Multiple YAxis support – RadChart will now allow you to add unlimited number...
    May 27, 2021 1 min read
  • People

    Telerik @ TechEd Europe 2009 in Berlin – Day 2

    Having learned from yesterday we started the day earlier than the exhibition opened officially and again it was worth doing so. Many people came by after their first session. Anyway we could have a short break and our CSO Steve managed the whole booth on his own …     At the end of another very busy day we enjoyed the reception in the exhibition area.     People love our T-Shirts so much that we will run out of them shortly. So if you are an attendee not having one yet, hurry up tomorrow morning and come to booth V7/V8 in the VSIP zone.   3 days...
    May 27, 2021 1 min read
  • Release

    Telerik XAML Controls Q3 2009 Release

      It has been another quarter for the XAML teams here at Telerik. During this time we worked on producing new tools and significant new features demanded by our customers. The results of our efforts can be seen in the latest Q3 2009 release that was officially launched two days ago. In this release we included lots of new tools, including navigational controls, like RibbonBar(Silverlight WPF), OutlookBar(Silverlight WPF); rich UI(visual) components like TileView(Silverlight WPF), Book, Map; Commands support with our Button controls(Silverlight WPF). The RadGridView control now uses new UI virtualization mechanism that makes you scroll 5x faster than before. The new UI virtualization works both vertically and horizontally,...
    May 27, 2021 2 min read
  • Web ASP.NET MVC

    Using ViewModel objects to improve the Ajax performance of Telerik Grid for ASP.NET MVC

    In this blog post I will demonstrate how to squeeze the most from Telerik Grid for ASP.NET MVC when using Ajax binding. Lets start with a simple grid bound to the Northwind Orders table: View: <%@ Page Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage<IEnumerable<UsingDto.Models.Order>>" %><asp:Content ID="indexTitle" ContentPlaceHolderID="TitleContent" runat="server"> Home Page</asp:Content><asp:Content ID="indexContent" ContentPlaceHolderID="MainContent" runat="server"><%= Html.Telerik().Grid(Model) .Name("Grid") .Columns(columns => { columns.Add(o => o.OrderID).Width(100); columns.Add(o => o.Customer.ContactName).Width(200); ...
    May 27, 2021 2 min read