Telerik blogs
  • Release

    Visual Studio 2008: Where is the new ASP.NET Ajax-Enabled Web Site template?

    UPDATE: Visual Studio 2010 does not have the Ajax-Enabled Web Site template as well. It always creates an ajax enabled web sites/applications, so what you need to do is just check if the ScriptManager is on your page. If you use RadControls for ASP.NET Ajax with Visual Studio 2005 you should be familiar with the Add New > ASP.NET Ajax-Enabled Web Site template. This is the option that you often choose in the add New Web Site dialog: Selecting this template gives you two benefits: 1. Your web.config file is automatically configured to use ASP.NET Ajax so you do not have to do anything manually. 2. The default...
    February 23, 2009
  • Web ASP.NET AJAX

    Web Service binding with RadScheduler for ASP.NET AJAX

    I'm very excited to announce that the Q1 Beta version of RadScheduler features a completely new Web Service binding mode. This is an important milestone in our quest for top performance. In this mode all operations are forwarded to a Web Service for processing using JSON for transport. This completely eliminates the need for postbacks and improves server load and bandwidth usage. The Firebug screenshot below demonstrates a typical RadScheduler session (with primed browser cache) using Web Service binding: The live demo demonstrates how to set-up RadScheduler using Web Service binding. The process is straight-forward and will be even easier after the final release....
    February 20, 2009
  • Web ASP.NET AJAX

    RadTips, Episode 17: Repositioning the RadAjaxLoadingPanel for ASP.NET AJAX

    I’m happy to announce another episode of RadTips, a series of screencasts offering tips and tricks for using Telerik's RadControls. If you've missed previous episodes, be sure to check them out. Each is only a few minutes long and covers a specific feature of the RadControls. Here is a list of the last few episodes... Sharing Toolbars with the RadEditor for ASP.NET AJAX Using Declarative Client-Side DataBinding in the RadGrid for ASP.NET AJAX, Part 1 Using Declarative Client-Side DataBinding in the RadGrid for ASP.NET AJAX, Part 2 Introducing the RadInputManager for ASP.NET AJAX Manual Ajax Requests Using the RadAjax Client-Side API If you’re interested in these...
    February 19, 2009
  • Web ASP.NET AJAX

    RadTips, Episode 16: Manual Ajax Requests Using the RadAjax Client-Side API

    I’m happy to announce another episode of RadTips, a series of screencasts offering tips and tricks for using Telerik's RadControls. If you've missed previous episodes, be sure to check them out. Each is only a few minutes long and covers a specific feature of the RadControls. Here is a list of the last few episodes... Customizing the Look of the RadAjaxLoadingPanel for ASP.NET AJAX Sharing Toolbars with the RadEditor for ASP.NET AJAX Using Declarative Client-Side DataBinding in the RadGrid for ASP.NET AJAX, Part 1 Using Declarative Client-Side DataBinding in the RadGrid for ASP.NET AJAX, Part 2 Introducing the RadInputManager for ASP.NET AJAX If you’re interested in...
    February 15, 2009
  • Web

    Hiding JavaScript code from old browsers

    Sometimes we need to hide the JavaScript code from the old browsers that do not support it. To prevent old browsers from displaying your JS code, do the following:   Immediately after the opening <script> tag, put a one-line HTML-style comment without the closing characters, so that the first two lines of your script would look like this: <script language="JavaScript"><!-- At the end of your script, put the following two lines: //--></script> Thus, your HTML file will contain the following fragment: <script language="JavaScript"> <!--     ...
    February 14, 2009