Skip to content
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

[website] Update links to rows pages #33739

Merged
merged 1 commit into from
Aug 1, 2022
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 docs/pages/blog/2021-q1-update.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ The date picker is at the border between the advanced components and the design

#### Data Grid

- 🔄 We have started to bring support for [lazy-loading](/x/react-data-grid/rows/#infinite-loading).
- 🔄 We have started to bring support for [lazy-loading](/x/react-data-grid/row-updates/#infinite-loading).
- ⬇️ We have introduced support for [CSV export](/x/react-data-grid/export/#csv-export).

<img src="/static/blog/2021-q1-update/csv-export.png" alt="" style="width: 523px; margin-bottom: 16px;" />
Expand Down
4 changes: 2 additions & 2 deletions docs/pages/blog/aggregation-functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ Please check out the feature’s [full documentation](/x/react-data-grid/aggrega

## Row pinning

The Aggregation footer row is powered by another new feature called [Row pinning](/x/react-data-grid/rows/#row-pinning).
The Aggregation footer row is powered by another new feature called [Row pinning](/x/react-data-grid/row-pinning/).
It enables you to pin rows to the top or bottom of your data grid.
Pinned rows are visible at all times while the user scrolls the grid vertically.

Expand All @@ -104,7 +104,7 @@ Pinned rows are visible at all times while the user scrolls the grid vertically.

Row pinning is available in the Pro and Premium Data Grids.

Check out more details in the [Row pinning documentation](/x/react-data-grid/rows/#row-pinning).
Check out more details in the [Row pinning documentation](/x/react-data-grid/row-pinning/).

## Share your feedback 🗣

Expand Down
8 changes: 4 additions & 4 deletions docs/src/components/pricing/PricingTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -390,16 +390,16 @@ const rowHeaders: Record<string, React.ReactNode> = {
/>
),
'data-grid/row-height': (
<ColumnHead label="Row height" nested href="/x/react-data-grid/rows/#row-height" />
<ColumnHead label="Row height" nested href="/x/react-data-grid/row-height/" />
),
'data-grid/row-spanning': (
<ColumnHead label="Row spanning" nested href="/x/react-data-grid/rows/#row-spanning" />
<ColumnHead label="Row spanning" nested href="/x/react-data-grid/row-spanning/" />
),
'data-grid/row-reordering': (
<ColumnHead label="Row reordering" nested href="/x/react-data-grid/rows/#row-reorder" />
<ColumnHead label="Row reordering" nested href="/x/react-data-grid/row-ordering/" />
),
'data-grid/row-pinning': (
<ColumnHead label="Row pinning" nested href="/x/react-data-grid/rows/#row-pinning" />
<ColumnHead label="Row pinning" nested href="/x/react-data-grid/row-pinning/" />
),
'data-grid/row-selection': (
<ColumnHead label="Row selection" nested href="/x/react-data-grid/selection/#row-selection" />
Expand Down