New to Telerik UI for ASP.NET AJAX? Download free 30-day trial

    WebForms Timeline Overview

      About RadTimeline for ASP.NET AJAX

      RadTimeline is a server-side WebForms wrapper over the Timeline for Kendo UI for jQuery. It operates on the client, displays a collection of events and their data in a chronological succession for each year.

      RadTimeline and 120+ other controls are part of Telerik UI for ASP.NET AJAX, a comprehensive toolset taking care of the common functionality of your application, while leaving you with more time to work on its business logic.

      Key Features

      • Renders and operates on the client-side
      • Client-side and server-side Data binding
      • Sorting
      • Built-in Actions and Images support
      • Horizontal and Vertical layout
      • Collapsible events
      • Custom Look and Feel with Templates
      • Multiple built-in skins
      • DefaultCS.aspx
      • DefaultCS.aspx.cs
      • scripts.js
      • styles.css
      • events-vertical-part1.json
      <%@ Page Language="c#" AutoEventWireup="true"  Inherits="Telerik.Web.Examples.Timeline.Overview.DefaultCS" CodeFile="DefaultCS.aspx.cs" %>
       
      <%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %>
       
      <!DOCTYPE html>
      <head runat="server">
          <title>Telerik ASP.NET Example</title>
          <link href="styles.css" rel="stylesheet" />
          <script src="scripts.js"></script>
      </head>
      <body>
          <form id="form1" runat="server">
          <telerik:RadScriptManager runat="server" ID="RadScriptManager1" />
          <telerik:RadSkinManager ID="RadSkinManager1" runat="server" ShowChooser="true" />
          <div class="demo-container" runat="server">
              <telerik:RadTimeline runat="server" ID="RadTimeline1" AlternatingMode="true" CollapsibleEvents="true" Orientation="Vertical">
                  <ClientEvents OnDataBound="OnDataBound" />
                  <WebServiceClientDataSource>
                      <WebServiceSettings>
                          <Select Url="events-vertical-part1.json" DataType="JSON" />
                      </WebServiceSettings>
                      <Schema>
                          <Model>
                              <telerik:ClientDataSourceModelField DataType="Date" FieldName="date" />
                          </Model>
                      </Schema>
                      <SortExpressions>
                          <telerik:ClientDataSourceSortExpression FieldName="date" SortOrder="Desc" />
                      </SortExpressions>
                  </WebServiceClientDataSource>
              </telerik:RadTimeline>
          </div>
       
          </form>
      </body>
      </html>

      Support & Learning Resources

      Find Assistance