Skip to content

Commit 7232da5

Browse files
authored
Updates
1 parent d2c1e34 commit 7232da5

File tree

1 file changed

+3
-13
lines changed

1 file changed

+3
-13
lines changed

aspnetcore/blazor/components/quickgrid.md

Lines changed: 3 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -146,20 +146,12 @@ QuickGrid renders additional empty rows to fill in the final page of data when u
146146
}
147147
```
148148

149-
:::moniker range=">= aspnetcore-9.0"
150-
151-
<!-- UPDATE 10.0 Check on https://github.com/dotnet/aspnetcore/issues/59078 to see
152-
if an empty row template feature is added that will result in an
153-
update the following content for >=10.0. -->
154-
155-
If you prefer to hide the empty rows rendered by the `QuickGrid`, you may do so using CSS styling to hide the empty data cell in rows that that don't contain any data.
156-
157-
In the following isolated CSS styles:
149+
To hide the empty row data cells rendered by the QuickGrid, use CSS styling. In the following isolated CSS styles:
158150

159151
* Row cells populated with data are displayed.
160-
* Empty row data cells aren't displayed, which avoids empty row cell borders rendering per the Bootstrap style.
152+
* Empty row data cells aren't displayed, which avoids empty row cell borders from rendering per Bootstrap styling.
161153

162-
`Index.razor.css`:
154+
`{COMPONENT}.razor.css`:
163155

164156
```css
165157
::deep tr:has(> td:not(:empty)) > td {
@@ -171,8 +163,6 @@ In the following isolated CSS styles:
171163
}
172164
```
173165

174-
:::moniker-end
175-
176166
For more information on using `::deep` [pseudo-elements](https://developer.mozilla.org/docs/Web/CSS/Pseudo-elements) with CSS isolation, see <xref:blazor/components/css-isolation#child-component-support>.
177167

178168
## Custom attributes and styles

0 commit comments

Comments
 (0)