• I am glad to announce that with the release of RadControls for Silverlight Q3 2009 Service Pack 1 RadMap has been updated to support OpenStreetMap provider. It is as easy as setting a single property:

    MyRadMap.Provider = new OpenStreetMapProvider();

     

    Set the Center and Location properties and you are ready to go. Here is an example of RadMap with our Boston office address in the center:

    <map:RadMap x:Name="RadMap1" ZoomLevel="13">
       
    <map:RadMap.Provider>
           
    <mapNamespace:OpenStreetMapProvider />
        </
    map:RadMap.Provider>
       
    <map:RadMap.Center>
               
    <mapNamespace:Location Latitude="42.397223" Longitude="-71.254685" /> 
        </
    map:RadMap.Center>
    </map:RadMap> 
     
    And this is the result
    OpenStreetMap2
     
    You can find a link to a sample project in the beginning of this blog...
  • In my previous blog post I explained how to display RadGridView Row Details with a RadWindow. Several days after the post was published I received a suggestion to create another sample that will be showing Row Details in a mouse-over tooltip fashion. And guess what. Christmas came earlier this year.

    The full credit for coming up with this brilliant idea goes to my friend and colleague Kalin Milanov, our Front-end Developer. He decided to edit the GridViewRow ControlTemplate and removed the DetailsPresenter from the spot it usually occupies under the cells. He then placed it inside a ToolTip:

       1: <ToolTipService.ToolTip>
       2: <ToolTip Style="{StaticResource ToolTipStyle}" 
      ...
  • If you really, really like the new and shiny extensions, you can use them in your WebForms application, too!

    Here are the needed steps:

    1. Add references to the following assemblies:

      • System.Web.Abstractions
      • System.Web.Routing
      • System.Web.Mvc
      • Telerik.Web.Mvc

      The first three are usually in the GAC.

    2. Copy the Content and Scripts folders from the extensions’ distribution into your project.

    3. The pages which will contain the MVC components will need to inherit System.Web.Mvc.ViewPage. Also, you should mock an MVC environment, like this:

      protected class ControllerMock : Controller
      {
          public ControllerMock(NameValueCollection queryString)
          {
              foreach (string param in queryString.Keys)
                ...
  • As many of you know yesterday ASP.NET MVC 2 RC was released. We did our best to make Telerik Extensions for ASP.NET MVC compatible with that release and I am glad to announce that you can now download the updated bits from here (open source) or here (licensed).

    Changes

    There are a few things that changed:

    1. We are now producing two dll files – one for ASP.NET MVC 1 and one for ASP.NET MVC 2. The files differ only in their version:
      For ASP.NET MVC 1 applications you should use Binaries\Mvc1\Telerik.Web.Mvc.dll. Its assembly version ends with 135 (which means MVC v1 .NET...
  • The Astoria (aka ADO.NET Data Services) team released an updated .NET 3.5 SP1 version of Astoria the other day. There are tons of great new features like projections and my favorite, an inline row count. As I said on my blog yesterday, you have to alert Astoria that you want to use the new V2 features, by default Astoria 2.0 runs in Astoria 1.0 mode. (For backwards compatibility.)

    Telerik has enhanced the Data Services Wizard to support Astoria 2.0 (officially the “Data Services update for .NET 3.5 SP1” but I digress….)

    Now if you have the updated Data Services DLLs on your machine, you will have the option to create a...

  • One very common issue that we’ve addressed in the Q3 release is the lack of a description field for the appointments. Until now you had to customize the advanced template in order to get one, but not any more.

    Description

    How to enable the integrated description field:

    • Data Source - set DataDescriptionField to the corresponding column in your database:
    <telerik:RadScheduler runat="server" ID="RadScheduler1" DataSourceID="AppointmentsDataSource" DataKeyField="ID" DataSubjectField="Subject" DataDescriptionField="Description" DataStartField="Start" DataEndField="End" DataRecurrenceField="RecurrenceRule" DataRecurrenceParentKeyField="RecurrenceParentID">
    ...
    </telerik:RadScheduler>
    • Provider – set EnableDescriptionField to “true” and persist the Appointment.Description value in your provider.
    <telerik:RadScheduler runat="server" ID="RadScheduler1" ProviderName="XmlSchedulerProvider" EnableDescriptionField="true" >
    ...
    </telerik:RadScheduler>

    This is all you need for editing and storing the description, but what about showing it? A simple appointment template will do:

    <AppointmentTemplate> <div> <%#...
  • Telerik is definitely unique in its transparency and openness when it comes to providing you with information on the work we do for you, our clients and users. So, here comes a new transparent channel to get the most recent news about Telerik Reporting directly in your RSS reader, without the need to visit our site. In addition to the already available Reporting Support Feed, which provides you with information on new Code Library projects and new Knowledge Base articles on RadControls for WinForms, we add the following feeds on new help articles, new demos, and new internal builds:

    • Telerik Reporting Help RSS...
  • The Astoria (aka ADO.NET Data Services) team released an updated .NET 3.5 SP1 version of Astoria last night. This version of Astoria is an inplace update and will overwrite your current version of Astoria (System.Data.Services.*.dll). You can download it from the following locations.

    The new version of Astoria has some very useful and powerful features. They include projections, data binding, row count, feed customization, server based paging and better BLOB support. There is one small issue, in order to support these new features you have to tell the framework you are using the new version of Astoria....

  • If you’re like me, the end of the year represents a time when most other projects are starting to wind down and you finally have a chance to get back to testing some of those “fun” Microsoft betas. Visual Studio 2010 Beta 2 is probably at the top of the stack. Microsoft’s next major update to the flagship IDE is getting very close to RTM, so now is a great time to start checking-out the tool.

     

    What you should be pleased to know is that almost all of Telerik’s developer tools already offer a lot of support for VS 2010- even...

  • We are very excited to announce the availability of Telerik Reporting Q3 2009 SP1. Highlights:

    Full VS2010/.NET4 Support

    Following Telerik’s relentless pursuit to support the latest technologies, we have bettered Telerik Reporting to support VS2010. The SP1 installer adds all Reporting Items in the VS2010 toolbox, the design-time experience is the same as in VS2005/2008, and full support for the .NETFX 4.0 Client Profile has been added.

    The Silverlight Viewer gets the much requested parameter support, SSL support, and custom bindings for the Report Service Client. You can also change its skin by using the RadControls for Silverlight themes. We even had time to update...

Product Families