Skip to content

Commit f3e6d04

Browse files
authored
fix(common): fix broken slugs (#668)
1 parent 432c379 commit f3e6d04

File tree

8 files changed

+7
-8
lines changed

8 files changed

+7
-8
lines changed

api/client/Telerik.Web.UI.RadSpreadsheet.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ slug: Telerik.Web.UI.RadSpreadsheet
99
## Inheritance Hierarchy
1010

1111
* [Telerik.Web.UI.RadWebControl]({%slug Telerik.Web.UI.RadWebControl%})
12-
* *Telerik.Web.UI.RadSpreadsheet]({%slug Telerik.Web.UI.RadSpreadsheet%})*
12+
* Telerik.Web.UI.RadSpreadsheet
1313

1414

1515
## Methods

controls/checkbox/client-side-programming/events/onclientclicked.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ This event can be used in scenarios where you need custom client-side code to be
5454

5555
* [OnClientCheckedChanging]({%slug checkbox/client-side-programming/events/onclientcheckedchanging%})
5656

57-
* [OnClientCheckedChanged]({%slug checkbox/client-side-programming/events/onclientcheckedchanged%}
57+
* [OnClientCheckedChanged]({%slug checkbox/client-side-programming/events/onclientcheckedchanged%})
5858

5959
* [OnClientMouseOver]({%slug checkbox/client-side-programming/events/onclientmouseover%})
6060

controls/editor/how-to/paste-at-cursor-position.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ To achieve this, you need to:
1919
1. **Store the current cursor position** or selection in a global variable. To do that, use the [OnClientSelectionChange event]({%slug editor/client-side-programming/events/onclientselectionchange%}) and the
2020
[getDomRange() method]({%slug editor/client-side-programming/radeditor-object%}) RadEditor provides.
2121

22-
You can also store the selection in any other event that suits your needs. For example, you can [attach a handler]({%slug editor/client-side-programming/methods/attacheventhandler%}) for `keyup` and store the range there as well.
22+
You can also store the selection in any other event that suits your needs. For example, you can [attach a handler]({%slug editor/client-side-programming/methods/attacheventhandler%}) for `keyup` and store the range there as well.
2323

2424
1. **Obtain the needed HTML** according to your business logic and UX requirements. You can find some tips on requesting complex content from the server in the [Different ways to make a request to the server in ASP.NET](https://www.telerik.com/blogs/different-ways-to-make-a-request-to-the-server) blog post.
2525

controls/menu/client-side-programming/objects/radmenu-and-radcontextmenu-objects.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ The **[RadContextMenu]({%slug menu/context-menus/radcontextmenu-object%})** clie
185185

186186
## RadContextMenu static objects and methods
187187

188-
* The **Telerik.Web.UI.RadContextMenu.contextMenus** holds a static collection with references to all **[RadContextMenu]** ({%slug menu/context-menus/radcontextmenu-object%})s on the page.
188+
* The **Telerik.Web.UI.RadContextMenu.contextMenus** holds a static collection with references to all [RadContextMenus]({%slug menu/context-menus/radcontextmenu-object%}) on the page.
189189

190190
````JavaScript
191191
function iterateThroughAllContextMenus()

controls/switch/client-side-programming/events/onclientclicked.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ This event can be used in scenarios where you need custom client-side code to be
5454

5555
* [OnClientCheckedChanging]({%slug switch/client-side-programming/events/onclientcheckedchanging%})
5656

57-
* [OnClientCheckedChanged]({%slug switch/client-side-programming/events/onclientcheckedchanged%}
57+
* [OnClientCheckedChanged]({%slug switch/client-side-programming/events/onclientcheckedchanged%} )
5858

5959
* [OnClientMouseOver]({%slug switch/client-side-programming/events/onclientmouseover%})
6060

knowledge-base/common-read-telerik-appsettings-from-an-external-file.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Load the Telerik appSettings flags from an external file.
1414

1515
### DESCRIPTION
1616

17-
The UI for ASP.NET AJAX controls provide [a lot of switches and settings you can set from the appSettings section in the web.config]({%slug general-information/web-config-settings-overview %}#control-properties-you-can-set-from-the-webconfig. In some cases you may want to declutter the web.config file and read these settings from a separate file. This can even facilitate deployment and testing, especially if you also use your own flags in the appSettings section.
17+
The UI for ASP.NET AJAX controls provide [a lot of switches and settings you can set from the appSettings section in the web.config]({%slug general-information/web-config-settings-overview %}#control-properties-you-can-set-from-the-webconfig). In some cases you may want to declutter the web.config file and read these settings from a separate file. This can even facilitate deployment and testing, especially if you also use your own flags in the appSettings section.
1818

1919
### SOLUTION
2020

knowledge-base/htmlchart-rebind-method.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Does RadHtmlChart offer a Rebind method similar to RadGrid's one? How to rebind
2929
## Solution
3030
RadGrid is a much more complex component than the asp:GridView is. That is why the RadGrid1.DataSource + RadGrid1.DataBind() combination would not be enough for most of the operations. We call this combination of binding data as [Simple Data Binding]({%slug grid/data-binding/server-side-binding/simple-data-binding%}).
3131

32-
Simple data binding is only good for displaying relatively simple data. As soon as you start enabling functionalities such as filtering, sorting, paging, and more, this way of binding data won't work. You will then need to bind data using the NeedDataSource event, see Programmatic Data Binding Using the NeedDataSource Event]({%slug grid/data-binding/server-side-binding/programmatic-databinding-using-needdatasource-event%}). Because the Grid goes through all sorts of Binding procedures when binding to data, to make it easier to bind again, we exposed a method called Rebind(). By calling this method, the Grid will trigger the NeedDataSource and handles the data binding part.
32+
Simple data binding is only good for displaying relatively simple data. As soon as you start enabling functionalities such as filtering, sorting, paging, and more, this way of binding data won't work. You will then need to bind data using the NeedDataSource event, see [Programmatic Data Binding Using the NeedDataSource Event]({%slug grid/data-binding/server-side-binding/programmatic-databinding-using-needdatasource-event%}). Because the Grid goes through all sorts of Binding procedures when binding to data, to make it easier to bind again, we exposed a method called Rebind(). By calling this method, the Grid will trigger the NeedDataSource and handles the data binding part.
3333

3434
RadHtmlChart does not require such a complex data binding procedure. You can simply change the DataSource by assigning the new Data and calling the DataBind() method.
3535

knowledge-base/scheduler-apply-custom-html-attributes-to-the-scheduler-appointment.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ Using "title" as a key for the Attributes collection of the appointment is not a
2121
For the other attributes, you can use the following JavaScript executed in the [Sys.Application.Load](https://msdn.microsoft.com/en-us/library/bb383829.aspx) event.
2222

2323
````ASP.NET
24-
<%-- https://docs.telerik.com{%slug common-executing-javascript-code-from-server-side-in-web-forms-and-aspnet-ajax%} --%>
2524
<telerik:RadCodeBlock runat="server">
2625
<script>
2726
function pageLoadHandler() {

0 commit comments

Comments
 (0)