Telerik blogs

Latest

  • Web

    The difference between ID, ClientID and UniqueID

    I this post I will try to explain the difference between those three commonly used properties. Each property is described in a separate section. Attached you can find a sample web site as well as two screenshots visually depicting the difference between the ID, ClientID and UniqueID properties. The ID property is used to assign an identifier to an ASP.NET server control which can be later used to access that control. You can use either the field generated in the codebehind or pass the value of the ID property to the FindControl method. There is a catch though - the ID property is...
    June 06, 2008
  • Web

    Can I create a bracket(tournament) with RadTreeView for Silverlight 2?

    The powerful Control Template and Styling mechanism of the forthcoming RadTreeView for Silverlight 2 will allow you to easily create a "bracket" view. The forthcoming CTP release of RadControls for Silverlight 2 (that will be live as soon as Microsoft launches the official Silverlight 2 Beta 2) will feature such an example in the QSF section. The screen-shot below gives you a short preview of what the lookless RadTreeView is all about. Another example that will be demonstrated within the QSF section is a panelbar view of the tree control. Along with its advanced layout mechanism RadTreeView harnesses the power of content-driven controls....
  • Web ASP.NET AJAX

    RadControls for ASP.NET Ajax in SharePoint 2007 and DotNetNuke

    SharePoint We recently pulled out a sample SharePoint 2007 (MOSS) site which shows RadControls for ASP.NET Ajax working in SharePoint environment. You can check it out by going to http://sharepoint.telerik.com. This site is a SharePoint Publishing portal. We have modified the master page and replaced the default navigation controls with RadTabStrip and RadPanelbar. The required steps are described in detail in our online documentation. The Corporate section of the SharePoint is utilizing a different master page which incorporates RadMenu and RadTreeView. RadEditor for MOSS also got a major update - go check Stoyans’s blog post for more info. Also we prepared three demo pages showcasing RadScheduler, RadEditor and RadGrid working seamlessly in SharePoint. The main challenge here was to get...
    June 04, 2008
  • Web ASP.NET AJAX

    Client-side edit, update, delete and insert with RadControls for ASP.NET AJAX, WebServices and LINQ

    Continuing my previous post regarding RadGrid client-side data-binding, I've made small example on how to perform edit, update, delete and insert using web services, LINQ and RadControls. Live Demo | Download
  • Web ASP.NET AJAX

    SQL Server sorting, paging and filtering with RadGrid client-side data-binding to WebService

    It is time to post new version of my 1 mil. records demo now with pure SQL Server paging, filtering & sorting. Basically this is very similar to how RadGrid will execute queries internally when you work with LinqDataSource, ObjectDataSource or ANY other DataSourceControl with built-in server paging. Furthermore, RadGrid is smart enough to not request all items in your collection by default if not needed even when you use direct binding via DataSource property. It is important to note that RadGrid will not oblige you to use any special DataSourceControl, class or interface! Conclusion: When you combine pure server-side data operations with pure JSON transfer between client and server, you can...