Skip to content

Commit 535f0e8

Browse files
committed
Hotfix for DataGrid docs
1 parent a677327 commit 535f0e8

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

examples/Demo/Shared/Pages/DataGrid/DataGridPage.razor

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@
2222
<li>
2323
The parameter <code>ResizeLabel</code> has been removed in favor of 3 new parameters. This makes changing strings in the DataGrid UI easier. See <FluentAnchor Href="#changeuistrings" Appearance="Appearance.Hypertext">Change strings used in the UI</FluentAnchor> for more information.
2424
</li>
25+
<li>It is currently not possible to use the <code>OnRowFocus</code> and <code>OnCellFocus</code> event callbacks. You can use the <code>OnRowClick</code>, <code>OnRowDoubleClick</code> and <code>OnCellClick</code> alternatives.
26+
27+
As of v4.11.1 the <code>OnCellFocus</code> event callback will be operational again. For <code>OnRowFocus</code>, we are waiting for the necessary support being added by the different browsers. See https://chromestatus.com/feature/6237396851228672 for more information.
28+
</li>
2529
</ul>
2630
</div>
2731
</p>

examples/Demo/Shared/wwwroot/docs/UpgradeGuide.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
## Breaking changes v4.11.0
22

3+
### Icons and Emoji
34
As of version 4.11.0 of our Icons and Emoji packages, we are packaging each icon variant (filled, outlined, regular, etc.) and emoji category (animals, food, etc.) in its own assembly.
45
This became necessary due to the large number of icons and some compiler limitations. Nothing has changed on how the packages need to be installed or added to your project.
56

@@ -16,7 +17,15 @@ To use the new versions in your (upgraded) projects, you need add the following
1617
Alternatively, you can use the full namespace(s) in your code or define the alias(es) for the namespace(s) at the top of your file(s).
1718

1819
When creating an application through one of the Fluent templates (v4.11.0 or higher), everything with regards to the icons will already be correctly set up for you.
19-
The templates do not use emoji so you'll need to make the necessary change yourself after addin the Emoji package.
20+
The templates do not use emoji so you'll need to make the necessary change yourself after adding the Emoji package.
21+
22+
### DataGrid
23+
The `DataGrid` **now uses HTML table based rendering**. A lot of changes have been made to the structure of the rendered content and the class names used.
24+
If you have been overriding grid classes, these probably no longer work and need to be changed in your own code. For more information, please see the DataGrid documentation page.
25+
26+
Because of the change in rendering it is currently not possible to use the `OnRowFocus` and `OnCellFocus` event callbacks. You can use the `OnRowClick`, `OnRowDoubleClick` and `OnCellClick` alternatives.
27+
28+
As of v4.11.1 the `OnCellFocus` event callback will be operational again. For `OnRowFocus`, we are waiting for the necessary support being added by the different browsers. See https://chromestatus.com/feature/6237396851228672 for more information.
2029

2130

2231

0 commit comments

Comments
 (0)