Telerik blogs

Latest

  • Web ASP.NET AJAX

    Excel-like filtering with RadGrid, RadMenu and RadAjax

    Hi everyone,We decided to start series of blog posts targeting interesting examples which can be easily implemented with RadControls. These short posts will be accompanied by flash movies (they will start in new window when you click the image at the bottom of the message) which outline the main parts of the demos. That is where the name of blog comes from - Telerik corporation presents. We hope you will enjoy the reading and do not spare your ideas about videos you would like to see here - who knows, may be you can become the producer/director of the next movie from the series :)Now up to...
    August 07, 2007
  • Web ASP.NET AJAX

    RadEditor for MOSS updated

    We have just updated our RadEditor for MOSS with a new build. You can get it from the usual place. Visit http://www.telerik.com/products/sharepoint/radeditor.aspx for more information. The new version (4.31) has a bunch of enhancements and bug fixes. The most important new feature in my opinion is the addition of a base editor class, which you can use in your own custom MOSS solutions. The new class (MOSSRadEditor) is available only in the full-featured version of the RadEditor for MOSS. It allows you to easily add an instance of RadEditor, which will have the MOSS specific features like the ability to use MOSS asset...
    August 03, 2007
  • Web ASP.NET AJAX

    ASP.NET AJAX Tips and Tricks

    By default ASP.NET AJAX will load and render your controls even if they do not need to be updated. Example:In this case the Panel marked as "Slow loading area" will be updated by default even on DropDownList1 selected index changed. What can we do to prevent this? You can set Panel1.Visible to true/false according to the current ajax request. Example: Enjoy! PS: Running example can be found here....
    August 02, 2007
  • Web

    Integrate RadMediaPlayer's Telerik theme into Microsoft Expression Media Encoder

    Before we step to the actual integration, there are few requirements that need to be met. Download and install RadControls for Silverlight Download and install Microsoft Expression Media Encoder Download and unzip TelerikThemePackage.zip (The archive contains 3 files - Default.html, player.xaml and preview.jpg) I assume that you have successfully completed the above three tasks. 1. Go to where you have installed Microsoft Expression Media Encoder. Then navigate to the Templates folder. Usually this is C:\Program Files\Microsoft Expression\Media Encoder 1.0\Templates\en\ 2. Create a copy of any of the folders (E.g. "Pilot") and rename it to Telerik 3. Replace Default.html, player.xaml, preview.jpg from the newly created "Telerik" folder with the three files from the TelerikThemePackage.zip archive. 4. Open Microsoft Expression...
    July 19, 2007
  • Web ASP.NET AJAX

    Force update of an ASP.NET AJAX UpdatePanel using JavaScript

    Since the beginning of ASP.NET AJAX era I have seen very few examples on how to manually force update of an ASP.NET AJAX UpdatePanel using JavaScript and I have decided to post very simple approach how to do this. First of all you will need to create your own UpdatePanel which will inherit from the original ASP.NET AJAX UpdatePanel and will implement IPostBackEventHandler interface: Now you can call explicitly Update() method of the UpdatePanel: ... and that's it! :-) ... however we can extend this control with an event which will be raised on explicit updates: Now you can use the new UpdatePanel in your pages like this: Enjoy!