Skip to content

Fix broken slugs #668

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 20, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion api/client/Telerik.Web.UI.RadSpreadsheet.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ slug: Telerik.Web.UI.RadSpreadsheet
## Inheritance Hierarchy

* [Telerik.Web.UI.RadWebControl]({%slug Telerik.Web.UI.RadWebControl%})
* *Telerik.Web.UI.RadSpreadsheet]({%slug Telerik.Web.UI.RadSpreadsheet%})*
* Telerik.Web.UI.RadSpreadsheet


## Methods
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ This event can be used in scenarios where you need custom client-side code to be

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

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

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

Expand Down
2 changes: 1 addition & 1 deletion controls/editor/how-to/paste-at-cursor-position.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ To achieve this, you need to:
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
[getDomRange() method]({%slug editor/client-side-programming/radeditor-object%}) RadEditor provides.

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.
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.

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.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ The **[RadContextMenu]({%slug menu/context-menus/radcontextmenu-object%})** clie

## RadContextMenu static objects and methods

* 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.
* The **Telerik.Web.UI.RadContextMenu.contextMenus** holds a static collection with references to all [RadContextMenus]({%slug menu/context-menus/radcontextmenu-object%}) on the page.

````JavaScript
function iterateThroughAllContextMenus()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ This event can be used in scenarios where you need custom client-side code to be

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

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

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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Load the Telerik appSettings flags from an external file.

### DESCRIPTION

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.
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.

### SOLUTION

Expand Down
2 changes: 1 addition & 1 deletion knowledge-base/htmlchart-rebind-method.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Does RadHtmlChart offer a Rebind method similar to RadGrid's one? How to rebind
## Solution
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%}).

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.
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.

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.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ Using "title" as a key for the Attributes collection of the appointment is not a
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.

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