diff --git a/api/client/Telerik.Web.UI.RadSpreadsheet.md b/api/client/Telerik.Web.UI.RadSpreadsheet.md index d28fb965b2..6feb1a5474 100644 --- a/api/client/Telerik.Web.UI.RadSpreadsheet.md +++ b/api/client/Telerik.Web.UI.RadSpreadsheet.md @@ -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 diff --git a/controls/checkbox/client-side-programming/events/onclientclicked.md b/controls/checkbox/client-side-programming/events/onclientclicked.md index 26bb5c54fa..d83f262cb9 100644 --- a/controls/checkbox/client-side-programming/events/onclientclicked.md +++ b/controls/checkbox/client-side-programming/events/onclientclicked.md @@ -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%}) diff --git a/controls/editor/how-to/paste-at-cursor-position.md b/controls/editor/how-to/paste-at-cursor-position.md index 957fed1713..24651147ce 100644 --- a/controls/editor/how-to/paste-at-cursor-position.md +++ b/controls/editor/how-to/paste-at-cursor-position.md @@ -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. diff --git a/controls/menu/client-side-programming/objects/radmenu-and-radcontextmenu-objects.md b/controls/menu/client-side-programming/objects/radmenu-and-radcontextmenu-objects.md index e1f0e4e515..4d06be66d3 100644 --- a/controls/menu/client-side-programming/objects/radmenu-and-radcontextmenu-objects.md +++ b/controls/menu/client-side-programming/objects/radmenu-and-radcontextmenu-objects.md @@ -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() diff --git a/controls/switch/client-side-programming/events/onclientclicked.md b/controls/switch/client-side-programming/events/onclientclicked.md index d27476bd8f..cb123c9f17 100644 --- a/controls/switch/client-side-programming/events/onclientclicked.md +++ b/controls/switch/client-side-programming/events/onclientclicked.md @@ -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%}) diff --git a/knowledge-base/common-read-telerik-appsettings-from-an-external-file.md b/knowledge-base/common-read-telerik-appsettings-from-an-external-file.md index 804a9f8e78..a8fae3ff27 100644 --- a/knowledge-base/common-read-telerik-appsettings-from-an-external-file.md +++ b/knowledge-base/common-read-telerik-appsettings-from-an-external-file.md @@ -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 diff --git a/knowledge-base/htmlchart-rebind-method.md b/knowledge-base/htmlchart-rebind-method.md index db51e7c02b..a917b0142b 100644 --- a/knowledge-base/htmlchart-rebind-method.md +++ b/knowledge-base/htmlchart-rebind-method.md @@ -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. diff --git a/knowledge-base/scheduler-apply-custom-html-attributes-to-the-scheduler-appointment.md b/knowledge-base/scheduler-apply-custom-html-attributes-to-the-scheduler-appointment.md index 42ed94ff13..0d89266353 100644 --- a/knowledge-base/scheduler-apply-custom-html-attributes-to-the-scheduler-appointment.md +++ b/knowledge-base/scheduler-apply-custom-html-attributes-to-the-scheduler-appointment.md @@ -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%} --%>