Skip to content

Commit 5dcd624

Browse files
committed
docs(timeline): Fix casing
1 parent 44f69ae commit 5dcd624

File tree

5 files changed

+8
-5
lines changed

5 files changed

+8
-5
lines changed

_config.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1578,6 +1578,9 @@ navigation:
15781578
"*timeline/data-binding":
15791579
title: "Data Binding"
15801580
position: 3
1581+
"*timeline/data-binding/server-side":
1582+
title: "Server-side"
1583+
position: 2
15811584
"*timepicker/templates":
15821585
title: "Templates"
15831586
position: 8

controls/timeline/data-binding/client-side.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ End Class
315315

316316
## RadClientDataSource
317317

318-
The **RadClientDataSource** control allows you to connect to a web service and fetch data that you can bind to **RadTimeLine**. After configuring the client data source, you will need to set the corresponding data fields ( DataTitleField, DataSubtitleField, DataDateField, etc.) and the **ClientDataSourceID** property of the Timeline. All fields of the bound data can be also used in the `EventTemplate` of the control.
318+
The **RadClientDataSource** control allows you to connect to a web service and fetch data that you can bind to **RadTimeline**. After configuring the client data source, you will need to set the corresponding data fields ( DataTitleField, DataSubtitleField, DataDateField, etc.) and the **ClientDataSourceID** property of the Timeline. All fields of the bound data can be also used in the `EventTemplate` of the control.
319319

320320

321321
>caption Example 2: Binding to a RadClientDataSource

controls/timeline/data-binding/server-side/binding-to-datatable,-dataset,-or-dataview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ OnItemDataBound="RadTimeline1_ItemDataBound"></telerik:RadTimeline>
2323

2424
In the **Page_Load** event handler, you can create and fill the DataTable object, then bind it to the RadTimeline. The `DataBind()` method should be called after setting the `DataSource` property.
2525

26-
The binding of the `Actions` fields in the sample below is done in the TimeLine's OnItemDataBound event handler, which allows you to ajust the `Actions` related data further.
26+
The binding of the `Actions` fields in the sample below is done in the Timeline's OnItemDataBound event handler, which allows you to ajust the `Actions` related data further.
2727

2828
````C#
2929
protected void Page_Load(object sender, EventArgs e)

controls/timeline/data-binding/server-side/binding-to-entitydatasource.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ position: 4
1414

1515
**RadTimeline** supports binding to **EntityDataSource**. To bind to a DataSource component, all you need to do is set the **DataSourceID** property of RadTimeline to the ID of the DataSource component. You should also set the **DataTextField** and **DataValueField** properties of RadTimeline to map the **Date**, **Title**, **Subtitle**, **Description**, **Actions** and **Images** values of the items to the respective columns / fields from the data source.
1616

17-
You will also need to setup the build-in `RadClientDataSource` instance of the TimeLine, configuring a `Schema` matching the passed data structure.
17+
You will also need to setup the build-in `RadClientDataSource` instance of the Timeline, configuring a `Schema` matching the passed data structure.
1818

1919
````ASP.NET
2020
<telerik:RadTimeline runat="server" ID="TimelineOrders"

controls/timeline/functionality/images.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ position: 2
1212

1313
**RadTimeline** can render an `<img />` tag for the first item of its images collection in the data source.
1414

15-
Its `Src` property of the `TimeLineItemImage` object will be set to the value of the src field of the image literal if RadTimeline is bound.
15+
Its `Src` property of the `TimelineItemImage` object will be set to the value of the src field of the image literal if RadTimeline is bound.
1616

1717
>caution To show more than one image, customize the [template](https://docs.telerik.com/devtools/aspnet-ajax/controls/timeline/functionality/client-side-templates) of the RadTimeline.
1818
19-
The following example demonstrates how to configure RadTimeline declaratively, having different images insisde each `TimeLineItem`.
19+
The following example demonstrates how to configure RadTimeline declaratively, having different images insisde each `TimelineItem`.
2020

2121
>caption Figure 1: RadTimeline with an image inside the item
2222
![timeline-image](../images/timeline-images.png)

0 commit comments

Comments
 (0)