Skip to content

Fix 404 articles #675

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
Apr 18, 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 controls/aiprompt/views.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ position: 2

# Views

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

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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,6 @@ Public Overrides Function DeleteAssignment(assignment As IAssignment) As IAssign
End Function
````

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

# See Also

* [Resources]({%slug gantt/resources/overview%})
Expand Down
3 changes: 1 addition & 2 deletions controls/grid/how-to/Other-resources.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ This page contains links to examples that you may find useful when implementing
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.
* [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)-
The Code Library illustrates how one can use HTML to edit a certain field data in a batch editing grid.
* [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
* [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
* [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.
* [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.
* [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.
Expand Down Expand Up @@ -62,7 +62,6 @@ The Code Library illustrates how one can use HTML to edit a certain field data i
## Grouping:

* [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.
* [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.
* [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.
* [Grouping single column at a time](https://www.telerik.com/support/code-library/grouping-single-column-at-a-time)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ When **[UseStaticHeaders](https://docs.telerik.com/devtools/aspnet-ajax/controls
There are two options to improve this aspect of the scrolling behavior:

- 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.
- 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).
- [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).
- 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/).

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -175,5 +175,4 @@ This approach effectively wraps the content of the nested view table in a scroll
## See Also

- [RadGrid Documentation](https://docs.telerik.com/devtools/aspnet-ajax/controls/grid/overview)
- [Customizing Nested View Rendering in RadGrid](https://www.telerik.com/support/code-library/separate-scrolls-for-inner-tables-in-hierarchical-grid)
- [Creating a Scrollable HTML Table](https://stackoverflow.com/questions/8232713/how-to-display-scroll-bar-onto-a-html-table)
2 changes: 1 addition & 1 deletion knowledge-base/grid-set-excel-export-cell-format.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ This can be necessary when you have large numbers (e.g., serial numbers) that Ex

## SOLUTION

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

Here is an example:

Expand Down