[Update]: You can find the addin for Expression Blend 2.0 SP1 here. The problem Expression Blend has been out in the wild for quite some time. However one of the most annoying thing was the lack of autocompletion (aka IntelliSense). Most of devs/designers out there were constantly switching from Blend to VS and backwards to do their stuff. The great free tool Kaxaml is at great help as well. The solution Using the Blend 2.5 add-ins architecture I have created an add-in that adds IntelliSense in Blend. I have reused the code from Kaxaml and adapted it work within Blend. Take a look: Download You can download the add-in from here....
It is fairly common that you will need to configure a page in your web application to redirect a user to another page. The reasons for this vary, but in one specific case you may want to rethink how you are redirecting your users. When a call to Response.Redirect() is made, the server sends a response back to the client with an HTTP 302 status code, telling the client that the resource has temporarily moved and where it can find the resource. I've created a simple page, OldPage.aspx, which redirects to NewPage.aspx during the Page_Load event. Let's jump into FireBug and see exactly...
Below is a summary of the new online resources available for our ASP.NET controls/WinForms controls/Telerik Reporting/Sitefinity: RADCONTROLS FOR ASP.NET
New major release (Q2 2008): http://www.telerik.com/products/aspnet-ajax/whats-new.aspx http://www.telerik.com/products/aspnet-ajax/release-history.aspx RadGrid Code library entries How to Obtain Reference to RadGrid DetailTables' Containing Rows and Cells, and Customize Their Appearance: http://www.telerik.com/community/code-library/submission/b311D-bkbhhc.aspx RadAjax Code library entries How to Set 100% Height and Random Styles to a RadAjaxManager Update Panel: http://www.telerik.com/community/code-library/submission/b311D-bkbkkd.aspx
One of the tasks that has been on my "to do" list for quite some time now is to build a big, real world-ish application that not only provides value to the community but also shows-off a lot of the RadControls in action. It's a big task and one that's especially hard to tackle when traveling about the world to speak and preparing smaller demos that work well in "small bites." But I'm putting my foot down and committing to begin work on this big project now! The goal of my "big project"- which, by the way, still needs a...
Welcome to the newly-created marketing blog!
While all developers at Telerik were busy preparing new cool features and upgrades for the Q2 release, the efforts of the marketing team were focused on cooking up brand-new print ads to match the enhanced Telerik products. Finally our concepts saw the light of day – you can find their online versions below. We’ll be happy to read what you think about them.
To dig deeper into the topic, people say technical ads full of info are the ones that developers pay attention to. However, is this really the case or are you more likely to...
UPDATE: You can download the latest Dynamic Data bits from here. We have just published a new update of our Dynamic Data bits. We fixed a bug which could cause possible duplication of items in RadComboBox (in the ForeignKey editor). The zip also includes the latest official release of RadControls for ASP.NET Ajax. You can download the bits from here....
I am pleased to bring you the first of many episodes from my new video series, RadTips. These episodes will be posted regularly here on the Telerik blogs, and each will highlight a specific feature of a RadControl in a short, concise screencast. The point of this effort is to bring you quick tips on how to take advantage of the features of our RadControls without having to devote more than a few minutes of your time to the learning process. In this first episode, we'll take a look at client-side data binding with the RadGrid. There are no bells and...
We would like to welcome you to the Telerik RadControls for WPF and RadControls for Silverlight Early Adoption Program!
As part of the Early Adoption Program we would like to reward all
community members who are eager to try our newest products –
RadControls for Silverlight and/or RadControls for WPF. Your feedback
and feature suggestions will be instrumental in helping us further
develop the products so that they meet your requirements. Your ideas
and suggestions will be rewarded according to the scheme below: Bug Report – 1000-2000 Telerik points Feature Request – depending on how valuable the feature request is and whether it can be implemented or not –...
We just extended RadGrid for ASP.NET AJAX with native client-side data binding to ADO.NET DataServices. Now you can use getDataServiceQuery() method and the grid will construct ADO.NET DataService style query: var northwindService = new Sys.Data.DataService("NorthwindDataService.svc");
var tableView = $find("<%= RadGrid1.ClientID %>").get_masterTableView();
northwindService.query(tableView.getDataServiceQuery("Customers"), updateGrid); All operations like paging, sorting and filtering are automatically persisted using $top, $skip, $orderby and $filter...