DevTools for .NET

  • Products Dropdown menu

    DevCraft: The Ultimate toolbox for developers

    WEB UI CONTROLS & COMPONENTS

    • ASP.NET AJAX
    • ASP.NET MVC
    • Silverlight

    DESKTOP UI CONTROLS & COMPONENTS

    • WPF
    • WinForms

    VISUAL STUDIO PRODUCTIVITY TOOLS

    • JustCode
    • JustTrace
    • JustDecompile

    HTML5 / JavaScript Widgets

    • Kendo UI Web
    • Kendo UI Mobile
    • Kendo UI DataViz

    DATA TOOLS

    • Reporting
    • OpenAccess ORM

    MOBILE UI CONTROLS

    • Windows Phone
    • Windows 8

    Unit Testing

    • JustMock
    Download Free Trial With dedicated support.
  • Online demos
  • Free trials
  • Buy Now Dropdown menu

    Buy the Ultimate toolbox for developers

    Buy Online
    • Get a quote
    • Purchase Orders
    • Renewals & Upgrades
    • Volume Discounts
    • Support Plans
    • License Agreement
    • FAQ

    Contact us

    • emailsales@telerik.com
    • uk+44‒20‒7291‒0580
    • usa+1‒888‒365‒2779
    • au+61‒2‒8090‒1465
  • Community & Support Dropdown menu

    Welcome to the Telerik community

    • Support Center
    • Announcements
    • Forums
    • Documentation
    • Videos
    • Webinars
    • Knowledge Base
    • Issue Tracker
    • Code Library
    • Skins

    Community programs

    • Evangelists
    • Insiders
    • MVPs
    Like us on facebook Follow us on twitter
  • Services
  • Blogs
Toggle search

The Telerik Blogs

  • New online resources for the past two weeks (09/10/2007 - 09/23/2007)

    Thursday, September 27, 2007 by ASP.NET AJAX Team | Go comment!

    Below is a summary of the new online resources available for our ASP.NET controls:

    RadGrid

    Code library entries:

    • Column expand/collapse:
      http://www.telerik.com/community/code-library/submission/b311D-hmdmg.aspx
    • Filtering boolean values with images in the filtering item:
      http://www.telerik.com/community/code-library/submission/b311D-hmhat.aspx

    RadTreeView

    Help topics:

    • How To-Client-Side->Expanding parent nodes (not uploaded yet)
    • NodeCreated event (not uploaded yet)

    RadComboBox

    Help topics:

    • Load On Demand->ShowMoreResultsBox (not uploaded yet)

    Code library entries:

    • Request RadComboBox items when Enter key is pressed:
      http://www.telerik.com/community/code-library/submission/b311D-hhhae.aspx


    RadEditor

    Videos:

    • Localizing RadEditor Prometheus by using Global resource file:
      http://www.telerik.com/ClientsFiles/product.videos/30/

    Important forum posts:

    • Comparison chart between RadEditor "Prometheus" and RadEditor for ASP.NET:
      http://www.telerik.com/community/forums/thread/b311D-baatdd.aspx
    • How to enable RadEditor "Prometheus" dialogs:
      http://www.telerik.com/community/forums/thread/b311D-baadth.aspx
    • Using RadSpell with RadEditor "Prometheus":
      http://www.telerik.com/community/forums/thread/b311D-baabcb.aspx

    RadWindow

    Knowledge base articles:

    • Calling RadWindow from code...
    Email to a friend
  • Localizing RadEditor Prometheus by Using Global Resource Files

    Thursday, September 27, 2007 by ASP.NET AJAX Team | Go comment!
    The Localization of the new RadEditor "Prometheus" now works with resource files and not with XML files as before. This change was made as resources represent the standard ASP.NET 2.0 mechanism for doing this with extensive built-in support in Visual Studio. As a result, it is a much easier approach for the developer in creating or changing a localization. Another major advantage of this is it is also much easier to deploy and maintain.

    The following movie, available at http://www.telerik.com/ClientsFiles/product.videos/30/, provides guidance how to make your own localizations by using global resource files.

    More information is also available in the following forum sticky note:
    Localizing RadEditor by Using Global Resource...
    Email to a friend
  • On dynamically creating server controls

    Thursday, September 27, 2007 by ASP.NET AJAX Team | Comment 1
    Every once in a while I see code which looks like that:

    public class MyCustomControl : WebControl
    {
        protected override void Render(HtmlTextWriter output)
        {
             SomeControl someControl = new SomeControl ();
             someControl.ID = "SomeID";
             someControl.SomeProperty = "SomeValue";
             someControl.RenderControl(output);
        }
    }

    There are two problems with this code:
    1. The child control is instantiated in the Render method
      From control execution lifecycle’s point of view it is too late to instantiate controls in the Render method. Even if you add them in the controls collection somefeatures won’t work just because it’s too late – postbacks, viewstate to name a few.
    2. The child control is never added to the controls collection. This means...
    Email to a friend
  • How wrong custom ViewState handling may harm more than help

    Tuesday, September 25, 2007 by Vladimir Enchev | Comment 1
    As some of us have found last Friday this article in MSDN about how to store your ViewState in Session is totally wrong. Using the Reflector you can find very easily that ControlState will be erased if you access more than once PageStatePersister.

    The correct implementation should be:

         PageStatePersister _pers;
         protected override PageStatePersister PageStatePersister
         {
             get
             {
                 if (_pers == null)
                     _pers = new SessionPageStatePersister(this);
                 return _pers;
             }
         }

    How about overriding SavePageStateToPersistenceMedium / LoadPageStateFromPersistenceMedium?
    If you do this you should update your PageStatePersister or you will miss the ControlState once again. Example:

    protected override object LoadPageStateFromPersistenceMedium()
    {
         object state = THESTATE;
         if (state is Pair)
         {
             Pair statePair = (Pair)state;
             PageStatePersister.ControlState =...
    Email to a friend
  • RadControls for WinForms last minute controls

    Sunday, September 23, 2007 by WinForms Team | Go comment!
    RadControls for WinForms Q2 is live! It has been exhaustive, but motivating 4 months since the last major release and I am very happy to announce the new version of our innovative Windows Forms components.
    As I had promised the last time, I will be providing you with interesting and helpful information about the WinForms suite. With Q2 out of the door, I will turn to two of the basic controls which we have included in this release, literally at the last moment, namely RadBreadCrumb and RadDateTimePicker.
    RadBreadCrumb is a navigation control directly related to the well-known to the community RadTreeView for...
    Email to a friend
  • How To: Format RadGrid PDFs

    Wednesday, September 19, 2007 by Todd Anglin | Comments 4
    On Monday, I showed you some the new settings in RadGrid 5 the enable you to control certain aspects exported PDFs. We looked at how you can easily set the PDF's metadata, change its filename, and even control the PDF's security settings. All of these settings- along with the ability to force the PDF to open in a new window- can be set with a single property in the Grid's new ExportSettings configuration block. What we didn't look at on Monday is how you can control the formatting of your exported PDFs. Today we'll take a look at how you can customize...
    Email to a friend
  • The new default skin (and how to switch back :)

    Tuesday, September 18, 2007 by ASP.NET AJAX Team | Comment 1
    With the Q2 release, we have decided it is time to refresh the look and feel of RadControls components to stay on the edge of the latest trends in visual design for the web. And ever since Vista, black is the new white… so we just had to join in with a trendy new theme for the default skins of our controls. The Q2 2007 skin sports a modern black twist, improved contrast, and larger font-sizes/more generous white space for a touch of web2.0 in your applications.



    While we ardently urge everyone to switch to the new look, we do...
    Email to a friend
  • Silverlight Game for Q2 Release

    Monday, September 17, 2007 by XAML Team | Go comment!
    While working on the second release for 2007, Telerik decided to surprise its clients by creating a Silverlight game.
    The idea was simple. A registered user enters his or her weight and logs in. This weight contributes to the common goal which is to lift what is on the other side of the rope.
      
    The game was developed using Silverlight 1.1 Alpha Refresh.
    We had couple of concerns while developing it, though. First of all we did not know how many people have already installed the 1.1 plug-in. Also we were not sure if the current game was going to reach the popularity...
    Email to a friend
  • First Look: RadGrid 5 PDF Export (updated)

    Monday, September 17, 2007 by Todd Anglin | Comments 6

    By now you probably know that one of the biggest new features in RadGrid 5.0 is support for export to PDF. For quite some time, RadGrid has supported direct export to Microsoft Word and Excel formats, but the addition of PDF export elevates the Grid's exporting capabilities to unprecedented levels. Using the new export feature couldn't be easier. As with previous export formats, all that is required is a call to a single simple RadGrid method:

    this.RadGrid1.MasterTableView.ExportToPdf();

    When you call this method, all of the data in the Grid is exported to a new PDF that the users can then save to their local...

    Email to a friend
  • Full support for LinqDataSource and WCSF ObjectContainerDataSource in RadGrid 5.0

    Friday, September 14, 2007 by Vladimir Enchev | Comments 5
    I'm pleased to announce that RadGrid 5.0 will have full support for LinqDataSource and WCSF ObjectContainerDataSource. The grid will be available for download in the beginning of the next week (17-18 September) and in the meantime you can check the attached examples:
    LinqDataSource example
    ObjectContainerDataSource...
    Email to a friend
12
Subscribe for updates
Bloggers Archive Tags
  • Jeff Fritz (9)
  • Phil Japikse (54)
  • JesseLiberty (78)
  • Support Department Blog (24)
  • Just* Team (155)
  • Telerik Marketing Blog (378)
  • Carey Payette (11)
  • Michael Crump's Blog (78)
  • Mehfuz Hossain (2)
  • WinForms Team (180)
  • Windows Phone Team (77)
  • OpenAccess ORM Team (169)
  • Chris Eargle (17)
  • ASP.NET AJAX Team (471)
  • XAML Team (375)
  • Vladimir Enchev (115)
  • Georgi Atanasov (38)
  • Windows 8 Team (28)
  • Miro Miroslavov (18)
  • Reporting Team (148)
  • Telerik Services (7)
  • Todd Anglin (65)
  • Evan Hutnick (97)
  • Valentin Stoychev (64)
  • Vesselin Vassilev (6)
  • Hristo Kosev (42)
  • Vassil Terziev (87)
  • Nikolay Atanasov (60)
  • The Telerik VSXTeam Blog (25)
  • Chris Sells (6)
  • ASP.NET MVC Team (70)
  • Vladimir Milev (34)
  • Developer Community's Blog (33)
  • 2013 May (18)
  • 2013 April (48)
  • 2013 March (55)
  • 2013 February (52)
  • 2013 January (42)
  • 2012 December (43)
  • 2012 November (40)
  • 2012 October (63)
  • 2012 September (45)
  • 2012 August (45)
  • 2012 July (37)
  • 2012 June (57)
  • 2012 May (42)
  • 2012 April (40)
  • 2012 March (43)
  • 2012 February (68)
  • 2012 January (21)
  • 2011 December (34)
  • 2011 November (61)
  • 2011 October (36)
  • 2011 September (57)
  • 2011 August (41)
  • 2011 July (55)
  • 2011 June (48)
  • 2011 May (53)
  • 2011 April (51)
  • 2011 March (76)
  • 2011 February (39)
  • 2011 January (29)
  • 2010 December (50)
  • 2010 November (58)
  • 2010 October (33)
  • 2010 September (36)
  • 2010 August (33)
  • 2010 July (57)
  • 2010 June (48)
  • 2010 May (42)
  • 2010 April (68)
  • 2010 March (50)
  • 2010 February (42)
  • 2010 January (46)
  • 2009 December (48)
  • 2009 November (49)
  • 2009 October (28)
  • 2009 September (38)
  • 2009 August (32)
  • 2009 July (40)
  • 2009 June (30)
  • 2009 May (46)
  • 2009 April (51)
  • 2009 March (39)
  • 2009 February (59)
  • 2009 January (54)
  • 2008 December (39)
  • 2008 November (41)
  • 2008 October (56)
  • 2008 September (57)
  • 2008 August (38)
  • 2008 July (48)
  • 2008 June (46)
  • 2008 May (20)
  • 2008 April (18)
  • 2008 March (16)
  • 2008 February (17)
  • 2008 January (8)
  • 2007 December (9)
  • 2007 November (11)
  • 2007 October (4)
  • 2007 September (17)
  • 2007 August (12)
  • 2007 July (16)
  • 2007 June (13)
  • 2007 May (19)
  • 2007 April (13)
  • 2007 March (11)
  • 2007 February (4)
  • 2007 January (6)
  • 2006 December (4)
  • 2006 November (11)
  • 2006 October (9)
  • 2006 August (1)
  • 2006 July (2)
  • 2006 June (3)
  • 2006 May (6)
  • 2006 April (6)
  • 2006 March (5)
  • 2006 February (8)
  • 2006 January (6)
  • 2005 December (9)
  • 2005 November (8)
  • 2005 October (10)
  • 2005 September (6)
  • 2005 August (3)
  • 2005 July (2)
  • 2005 May (1)
    silverlight winforms telerik windows-phone aspnet radcontrols-for-silverlight reporting aspnet-mvc silverlight-4 xaml radcontrols openaccess-orm net windows-forms winrt howto justtrace wp7 win8 radeditor release metro radtips wp7dev themes visual-studio styling winjs taskit servicepack javascript optimization performance roadmap mocking skin mvc Windows-Phone-8 radtreeview q1-2012 q2-2012 client-side radcontrols-for-windows-phone-showcase wpf wcf-ria-services q1-2010 service-pack events metro-ui q1-2011 getting-started telerik-ajax-grid windowsclient conference webinars 2011 c silverlight-3 linq treeview databinding accessibility aspnet-45 web-ui ui vsextensions wp8 chartview odata q2-2011 teched visual-studio-11 net-tools client-side-databinding wcf radpivotgrid contextmenu combobox theme justcode refactoring code-analysis justmock-lite design telerik-openaccess-orm pdf coverflow prism radrichtextbox visual-studio-2012 q3-2012 radwebinar aspnet-ajax data components support-resources mvc3 crm radgridview-for-silverlight sample-applications example rss radcoverflow editor design-time application grid html diagram raddatepicker agile Q1-2013 customization radmap ria-services web-service localization radrotator visual-style-builder memory-profiler template reporting-parameters contest sql-server warehouse features mobile-devices vs11 webapi jquery radfileexplorer browsers optimization-tips windows-store build gauge navigation rich-ui menu video visual-studio-2010 vs-2010 scheduler virtualization drop n-tier dragdrop installation radmenu xml testing-framework falafel code-camp radcalendar windows-7 reporting-crosstab services wcf-data-services helpdesk radajax free radjumplist awards testing radchartview radupload mvvm-light test-studio raddatapager silverligh radribbonbar videos resources radslider visualization q3 tips silverlight-editor grouping vs2012 courseware messagebox office2010 windowsclientnet extensibility refactor gallio mbunit-3 decompile test-runner qunit radimageeditor case-studies microsoft prizes sharepoint-2010 q3-2010 connections css3 developer-tools migration orgchart barcode blogs reduce-assembly-size radajaxloadingpanel radrating radcaptcha internet-explorer web-api best-practices raddiagram gallery help 2009 licensing wai-aria devconnections msdn M-V-VM memory-profiling OLAP series dependencyproperty layout vs2008 appearance mvvm map filtering raddomaindatasource radtileview windows gridview docking transition blend radbook persistence workarounds hristo-borisov hierarchy word localizationmanager control-panel coded-ui-tests raddock carousel propertygrid paging listview sp1 upgrade internal-build formatter justteam plugins subreport minneapolis orm pdc2008 survey report-items twitter interactivity keyboard-navigation qr-code radasyncupload web-developer-tools console canvas support-lifecycle firefox dev-tools rtm drill-down load-on-demand radinput validation collaboration ajax wcf-web-service general web-site digital-media organizational-chart radtreelist declarative-binding radnotification radsocialshare client-side-api routing opera wcf-plain-services mvc4 silverlight-5 openaccess-sdk assembly-minifier optimizer minify kendoui-for-aspnet-mvc mvc-grid upload conversationview radpickerbox wrap-layout ui-virtualization dashboard mix httpmodule radtabstrip dotnetregister stephen-forte aspnetpro-magazine mix-08 telerik-insiders website competition devproconnections mix-11 radtimeline radsparklines raduploaddroppanel rx reactive-extensions windows-phone-wednesdays just-plain-cool profiling RadDataForm new-control dropdownlist lightweight Searchbox Persistence-Framework Model-binding less Graph improvements Windows-RT software-testing annotations empty-values openaccess pixel-snapping extension-methods pointmark snapshot ria implicit-styles gantt radcontrols-for-wpf radcontrols-for-winforms vista routed-events webinar treev easing panelbar cookies htmlplaceholder color beta effects image-processing ziplibrary row-reorder groupbox label copypaste clipboard ironpython calculated-column dlr sorting data-engine virtualqueryablecollectionview netflix ribbonwindow outlookbar radmediaplayer editing silverlight-html richtext richtextbox q2-2010 gids silverlight-themes compass wpf-telerik-raddocking telerik-raddocking wpf-raddocking toolbar sandcastle totals csv financial trackball demo touch radmessagebox dialog start right-to-left project tpf gmail codeplex typing-assistance c5 await appx keyboard-shortcuts colorization solid dependency-inversion refactorings q2-2012-service-pack-2 net-memory-profiling net-performance-profiling justmock-unit-testing-mocking-nunit-mocking-tdd-test-driven-development technical-debt sl-oob-profiling live-data stubs fakes clr arrange-act-assert visual-aid async vbnet telerik-license-winner ten-year-anniversary report-designer service boston free-software bizspark john-kellar gabe-sumner sql-server-management-studio bugs linq-to-xml forward-mapping mysql devlink report-group page-number crosstab calendar objectdatasource open-xml-formats powerpoint viewer radcontrols-for-aspnet-ajax zoom markdown format autocompletebox 2d-rendering q2-2012-sp2 htmlchart discontinued radeditor-for-moss scripts ie9 aspnet-button client-templates htmlchart-radhtmlchart-chart-aspnet-ajax-radcontrols-comparison-radchart ebook qamp htmlchart-radhtmlchart-chart-aspnet-ajax-radcontrols multicolumn-headers track-changes web-forms strongly-typed-controls tag q1-2012-sp1 dimitar-raykov internship page-inspector trial designer drag-and-drop biff treelist qa data-source-engine reordering google navigation-controls organizational radticker radtextbox telerik-support tsak roadmaps toolbox web-parts scroll extender tooltip animation reorder seo items futures xmldatasource mathml radcolorpicker as radformdecorator-webkit-safari-chrome-scrollbar-styling radformdecorator-accessibility-radio-buttons-checkboxes-khtml-appearance-focus css-form-decorator-webkit-safari-chrome safari radslideview spatial-data add-openaccess-service sql-server-2012 adonet-data-services advanced tegra ray-gun-navigator stored-procedures linqpad stored-procedure xap-minifier radribbontab cag telerik-extensions-for-aspnet-mvc scatter-line scatter web dataform popup compiler radtrialreminder application-building-blocks radrateapplicationreminder ctp lob sp2 fast tree web-mail architecture radajaxmanagerproxy linq-to-m m comparison-and-migration-tool mono new-year vanatec surprise books powershell mind-mapping forms izoofari red-herring europe-top-100 radpony agile-myths project-management las-vegas devconnections-2012 open-source freiburg starwest xbox office2007 game moonlight linux team-productivity webui-test-studio alm radtreemap upload-parameters upload-filters esri-shapefiles kml-data radbulletgraph backstage-view q12012 custom-gantttask highlighting custom-timeline-items advanced-tooltips trackball-behavior pan-and-zoom-behavior radcartesianchart resource-grouping resource-filtering radentityframeworkdatasource radcalculator radcoloreditor radpdf radbarcode patterns-practices epic raduniformgrid modularity behaviors source-code repository-pattern telerik-rocks precon lightswitch radphoneapplicationframe live-tiles caliburnmicro push-notifications drag-cue raddraganddropmanager radanimation radwrappanel user-group mvp firestarter new-england-code-camp designer-developer-experience inotifydataerrorinfo dashboards application-library-caching northeast-roadshow software-craftsmanship wireframes WP RadAutoCompleteBox Token legacy-code Login Redirect Authorization Unexpected-redirect Page-Lifecycle .NET3 .NET2 2008 2005 Telerik-Academy Corporate-Social-Responsibility BAIT RadTreeList-for-ASP.NET-AJAX RadGrid-for-ASP.NET-AJAX RadPivotGrid-for-ASP.NET-AJAX RadControls-forAccess-ASP.NET-Ajax RadconQ1-2013 asp.netASP.NETQ1-AJAX Conference-Buddy Telerik-ASP.NET-AJAX SharePoint-2013 DropDownTree Zip-Library PdfViewer RadDropDownTree webfarm webgarden web-garden web-farm client-side-binding custom-colors RadPdfViewer Design-Time Designers decompilation future code-templates diagrams Nokia Hackaton RadPanorama RadLiveTileElement request server callback postback webservice comparison Wallet supp drawing Image-filters Report-Viewer AppMock aspnet-ajax scss sass QUnitMetro DevCraft Q2-2013 Silk Glow BlackMetroTouch serializer storage-provider persistencemanagerproxy persistencemanager settings save-settings CodeProject startup paste-from-word Intune range-bar-series multi-axes multiple-axes CJK sup extension hackathon Drag-and-Drop tip-of-the-day anti-aliasing radchart debugging expression-blend chart integration exporting ux row-details radgridview radwindow entity-framework radscheduler radgauge community radribbonform radexpander support animations breadcrumb routed-commands mef radtransitioncontrol adrotator slider tileview official-release drag-amp fixes windows-phone-7 image-editor zip radribbonview data-templates visual-studio-tips sql-server-2008 vertical-coverflow control radscheduleview rating backstage intellisense circle half quarter bindablelinq word-processor age-pyramid silverlight-word-processor silverlight-coverflow silverlight-richtext sqldatasource india wpf-docking raddocking drag-drop radtoolbar extensions export excel print touch-support panorama pivotgrid printing windows-8 coded-tests windows8 facebook autocomplete outlook css radcarousel telerik-reporting cab immersive expressions dialogs load msaa win radwizard automation wizard coversion visual-studio-extensions radconrolspy demos test-driven-development tdd unit-testing vs-2012 mocking-tool automocking justdecompile winmd api profiler performance-profiling memory-leaks bdd naming-conventions jasmine largest-memory-retainers camel-case-searcher lazy-programming file-system justmock search razor productivity ultimate-collection devcraft-complete community-team teched-europe teampulse developercommunity sql-azure ireportresolver telerik-tv silverlight-foundations hdc evangelists radgrid picturebox report-parameters send-email adobe-acrobat training radcombobox telerik-trainer page-aggregate sharepoint azure rendering cloud self-hosted-service case-study filter medium-trust radtagcloud keyboard-support telerik-ajax-pivotgrid skins new ribbonbar import format-painter configurationpanel mobile graphics radhtmlchart moss sharepoint-2007 ribbon chrome radbutton controls a whats-new clientitemtemplate web-development radformdecorator data-binding xhtml support-tickets style radlistview json resizing column-show-hide thumbnail q3-2011 social-network html5 web-resources radorgchart scrolling radspell overview headercontextmenu aria prometheus revert column dotnetnuke wiris caching dynamic-data troubleshooting tutorial code-generation spatial typeconverter project-templates nuget metrics kendoui database or nvidia stored-procedure-editor reverse-engineering generic-data-access minifier svg unobtrusive-validation how-to hub-tile flickr hubtile raddataboundlistbox radtimepicker data-visualization csc named-arguments context-menu radtooltip radpaginationcontrol raddiagnostics radbusyindicator radchart-for-wp7 sample q1 documentation radinputmanager compression oslo phone-support consulting-express secret-project new-product avaxo peter-blum show-off company readers-choice-awards pdc ideas-and-feedback-portal speaking announcement q3-release webinar-week sitefinity smashing-conference chris-sells award xamlflix radpivotmap raddatabars radtimebar radbreadcrumb contextual-tabs icon-viewmodel radganttview-ctp radpolarchart custom-appointments radvirtualizedwrappanel event-to-command lob-chronicles crm-demo infrastructure attributes hands-on-lab q1-2011-sp1 telerik-eastern-canada-user-group-tour silverlightrecruit bi net-user-group q2-2009 application-design PivotOverview RadControls-for-Windows-Phone RadListPicker Forbes NUnit Authentication Bulgarian-Association-of-Information-Technologies OLAP-BROWSER sdk web-farm load-balancing load-balancing load-balanced Access-Data asp plu
  • .NET Developer Tools DevTools

    UI controls for ASP.NET AJAX, MVC, WPF,
    Silverlight, Windows 8 and Windows Phone

  • Hybrid Mobile Development Icenium

    Cross-platform Mobile Development Tool
    with cloud-based architecture

  • HTML5 / JavaScript Development Kendo UI

    Everything you need to build sites and
    mobile apps with JavaScript and HTML5

  • Testing Tools Test Studio

    One easy tool for Functional, Performance,
    Load and Mobile software testing

  • Online Business Platform Sitefinity CMS

    Everything for your online business - content
    management, ecommerce, emarketing

  • Agile Project Management TeamPulse

    Simple and intuitive project management
    and collaboration software

Contact us

We are here for you.
  • usa+1‒888‒365‒2779
  • uk+44‒20‒7291‒0580
  • bg+359‒2‒8099850
  • de+49‒89‒2441642‒70
  • au+61‒2‒8090‒1465
  • emailsales@telerik.com
Your account Access to your products, updates and support
Telerik Product Families
  • Anonymous

    • Account Overview
    • Support Tickets
    • Edit Profile
    • Log out

    Your Bookmarks

    It seems you haven't bookmarked any pages. Fix that by clicking the button below

      Bookmark this page
    • ABOUT US

      About Telerik

      • Company
      • Press Center
      • Customers
      • Community
      • Careers
      • Contacts
    • shopping cart

    Products

    .NET Developer Tools

    • ASP.NET AJAX Controls
    • ASP.NET MVC Extensions
    • Silverlight Controls
    • Windows 8 Controls
    • WPF Controls
    • WinForms Controls
    • Windows Phone
    • Telerik Reporting
    • Telerik OpenAccess ORM
    • JustCode
    • JustMock
    • JustTrace
    • JustDecompile

    SharePoint

    Controls and Web parts

    Agile Project Management

    • TeamPulse
    • Ideas & Feedback Portal

    HTML5 JavaScript Framework

    • Kendo UI Web
    • Kendo UI Mobile
    • Kendo UI DataViz

    Hybrid Mobile Development

    • Icenium

    Software Testing

    • Test Studio
    • Test Studio for iOS
    • Testing Framework

    Web Content Management

    • Sitefinity ASP.NET CMS
    • Add-ons Marketplace

    Value Bundles

    • DevCraft Ultimate

    Services

    • Software Development
    • Training & Mentoring
    • UX & Design
    • Assessments
    • Enterprise Solutions

    Demos

    • Developer Tools
    • Agile Project Management
    • Software Testing
    • Web Content Management

    Free Trials

    Purchase

    • Request a Quote
    • Contact Sales
    • Purchase Orders
    • Renewals & Upgrades
    • Volume Discounts
    • Support Plans
    • License Agreement
    • FAQ

    Free Tools

    • Telerik Minifier
    • Code Converter
    • Razor Converter
    • JustMock Lite
    • JustDecompile

    Community & Support

    • Support Center
    • Announcements
    • Documentation
    • Forums
    • Webinars
    • Videos
    • Code Library
    • Issue Tracker
    • Knowledge Base
    • Skins

    Blogs

    About Us

    • About Us
    • The Telerik Difference
    • Customers & Testimonials
    • Awards
    • Press Center
    • Events
    • Follow Us
    • Career Opportunities
    • Management
    Telerik - deliver more than expected
    • Contact Us
    • Site Feedback
    • Terms of Use
    • Privacy Policy

    Copyright © 2002-2013 Telerik. All rights reserved.

    • USA: +1‒888‒365‒2779
    • Germany: +49‒89-2441642-70
    • UK: +44‒20‒7291‒0580
    • Bulgaria: +359‒2‒8099850
    • Australia: +61‒2‒8090‒1465
    • mail: sales@telerik.com
    • Telerik fanpage on Facebook
    • Telerik updates on Twitter
    • Telerik company page on LinkedIn
    • Telerik on Google+
    Powered by Sitefinity ASP.NET CMS