Skip to content

Commit 3c4cb46

Browse files
authored
fix(links): fix 404 articles
1 parent 9b7981a commit 3c4cb46

File tree

6 files changed

+3
-8
lines changed

6 files changed

+3
-8
lines changed

controls/aiprompt/views.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ position: 2
1010

1111
# Views
1212

13-
The AIPrompt allows you to show pre-defined and custom views. The [`Views`](/api/javascript/ui/aiprompt/configuration/views) configuration exposes a number of options that you can set for a view, such as text, name, or icon. Each view can be craeted in the markup or in the backend.
13+
The AIPrompt allows you to show pre-defined and custom views. The `Views` configuration exposes a number of options that you can set for a view, such as text, name, or icon. Each view can be craeted in the markup or in the backend.
1414

1515
Below you will find a list of the supported view types:
1616

controls/gantt/resources/data-binding/custom-entityframework-provider.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,8 +130,6 @@ Public Overrides Function DeleteAssignment(assignment As IAssignment) As IAssign
130130
End Function
131131
````
132132

133-
[Here](https://www.telerik.com/support/code-library/implementing-gantt-resources-with-custom-entity-provider) you can find a code library with a runnable sample project, based the above instructions.
134-
135133
# See Also
136134

137135
* [Resources]({%slug gantt/resources/overview%})

controls/grid/how-to/Other-resources.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ This page contains links to examples that you may find useful when implementing
2222
This Code Library provides an extension for the RadGrid Batch Editing functionality, which allows you to implement related RadComboBoxes functionality between column and to set Batch Validation.
2323
* [Performing updates/inserts containing HTML for a Batch Editing grid](https://www.telerik.com/support/code-library/performing-updates-inserts-containing-html-for-a-batch-editing-grid)-
2424
The Code Library illustrates how one can use HTML to edit a certain field data in a batch editing grid.
25-
* [Manual Insert/Update/Delete operations using Auto-generated editform with sql statements from the code-behind] (https://www.telerik.com/support/code-library/manual-insert-update-delete-operations-using-auto-generated-editform-with-sql-statements-from-the-code-behind)- Demonstrates manual Insert/Update/Delete operations using Auto-generated editform with sql statements from the code-behind
25+
* [Manual Insert/Update/Delete operations using Auto-generated editform with sql statements from the code-behind](https://www.telerik.com/products/aspnet-ajax/documentation/knowledge-base/grid-manual-insert-update-delete-operations-using-auto-generated-editform-with-sql-statements-from-the-code-behind)- Demonstrates manual Insert/Update/Delete operations using Auto-generated editform with sql statements from the code-behind
2626
* [Prevent Losing Batch Editing Changes on Paging or any other PostBack](https://www.telerik.com/support/code-library/prevent-losing-batch-editing-changes-on-paging-or-any-other-postback)- This code-library demonstrates how to prevent the action if there are any unsaved Batch changes.
2727
* [Copy-Paste Cell/Row data through RadContextMenu with Batch Editing](https://www.telerik.com/support/code-library/copy-paste-cell-row-data-through-radcontextmenu-with-batch-editing)-This code library demonstrates how to implement Copy-Paste functionality for cells and rows for RadGrid in Batch Edit Mode with RadContextMenu.
2828
* [Manual CRUD Operations with LinqDataSource](https://www.telerik.com/support/code-library/manual-crud-operations-with-linqdatasource)- The current code library demonstrates RadGrid's capability for inserting new data, updating existing data and deleting data handled using RadGrid public API and Linq to SQL data context.
@@ -62,7 +62,6 @@ The Code Library illustrates how one can use HTML to edit a certain field data i
6262
## Grouping:
6363

6464
* [Custom Range Grouping](https://www.telerik.com/support/code-library/custom-range-grouping)- This project demonstrates how to create custom range grouping with RadGrid when using Advanced Data-Binding through NeedDataSource event.
65-
* [Grouping + Conditional Formatting + Dynamic Control](https://www.telerik.com/support/code-library/grouping-conditional-formatting-dynamic-control)- Demonstrates how one can customize the rad-grid and can programmatically, add dynamic controls such as link button, show/hide columns & headers along with grouping.
6665
* [ExpandCollapseGroupedGridOnDoubleClickingTheGroupHeader](https://www.telerik.com/support/code-library/expandcollapsegroupedgridondoubleclickingthegroupheader)- This project illustrates how to expand/collapse grouped items in RadGrid on double clicking the Group header.
6766
* [Grouping single column at a time](https://www.telerik.com/support/code-library/grouping-single-column-at-a-time)
6867

knowledge-base/grid-horizontal-scroll-speed-is-slow-with-static-headers.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ When **[UseStaticHeaders](https://docs.telerik.com/devtools/aspnet-ajax/controls
2727
There are two options to improve this aspect of the scrolling behavior:
2828

2929
- Disable the static headers (set **ClientSettings.UseStaticHeaders.UseStaticHeaders** to **false**). You may also want to reduce the **PageSize **of the grid (e.g. to 10) so that vertical scrollbar is not present for most cases. You may also increase the height of the grid.
30-
- Use the code from the following example that modifies the scrolling behavior to skip a few columns at a time: [RadGrid scrolling with predefined step](/support/code-library/radgrid-scrolling-with-predefined-step).
3130
- [Use the Prev and Next buttons that the grid can generate for scrolling through frozen columns](https://demos.telerik.com/aspnet-ajax/grid/examples/columns-rows/columns/frozen-columns/defaultcs.aspx). If you do not want to have actual frozen columns, you can either add a dummy column at the beginning of the collection and set its Display property to false, or use the [OnGridCreated client-side event](https://docs.telerik.com/devtools/aspnet-ajax/controls/grid/client-side-programming/events/ongridcreated) to set the frozen columns count to 0. You can find attached samples of this [here](files/grid-prev-next-buttons-workaround.zip).
3231
- Try adding the following code that removes an extra scroll handler from the header div. Workaround is provided by Grant Elliot of [Trimble](https://www.trimble.com/).
3332

knowledge-base/grid-separate-scrolls-for-inner-tables-in-hierarchical-grid.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,5 +175,4 @@ This approach effectively wraps the content of the nested view table in a scroll
175175
## See Also
176176

177177
- [RadGrid Documentation](https://docs.telerik.com/devtools/aspnet-ajax/controls/grid/overview)
178-
- [Customizing Nested View Rendering in RadGrid](https://www.telerik.com/support/code-library/separate-scrolls-for-inner-tables-in-hierarchical-grid)
179178
- [Creating a Scrollable HTML Table](https://stackoverflow.com/questions/8232713/how-to-display-scroll-bar-onto-a-html-table)

knowledge-base/grid-set-excel-export-cell-format.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ This can be necessary when you have large numbers (e.g., serial numbers) that Ex
1616

1717
## SOLUTION
1818

19-
To do this, you need to use the **InfrastructureExporting event** of the grid and the underlying [ExportInfrastructure](to%20modify%20the%20underlying%20ExportInfrastructure), then find the column that you wish to change (for example, via its header text), then loop through its **cells** and set their Excel format via their **Format property**.
19+
To do this, you need to use the **InfrastructureExporting event** of the grid and the underlying [ExportInfrastructure]({%slug controls/export-infrastructure%}), then find the column that you wish to change (for example, via its header text), then loop through its **cells** and set their Excel format via their **Format property**.
2020

2121
Here is an example:
2222

0 commit comments

Comments
 (0)