-
Notifications
You must be signed in to change notification settings - Fork 389
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[DataGrid] Fix issue when scrolling horizontally and Virtualize="true" (
#3117) * [DataGrid] - Use correct spacer for Virtualize - Remove unused style - Only render row-type if not default * Add IssueTeste with current issue example * Fix tests * Add specific block to issue page for this issue * Add DataGrid Rendermode * Fix tests * Rename Rendermode to DisplayMode * Fix tests --------- Co-authored-by: Denis Voituron <[email protected]>
- Loading branch information
Showing
14 changed files
with
172 additions
and
130 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// ------------------------------------------------------------------------ | ||
// MIT License - Copyright (c) Microsoft Corporation. All rights reserved. | ||
// ------------------------------------------------------------------------ | ||
|
||
namespace Microsoft.FluentUI.AspNetCore.Components; | ||
|
||
/// <summary> | ||
/// The type of rendering to use for the <see cref="FluentDataGrid{TGridItem}"/> | ||
/// </summary> | ||
public enum DataGridDisplayMode | ||
{ | ||
/// <summary> | ||
/// Uses display:grid with HTML table elements to render the DataGrid. | ||
/// With this mode fr units canbe used to set the column widths. | ||
/// </summary> | ||
Grid, | ||
|
||
/// <summary> | ||
/// Uses HTML table elements only to render the DataGrid. | ||
/// With this mode fr units cannot be used to set the column widths. | ||
/// </summary> | ||
Table, | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.