-
Notifications
You must be signed in to change notification settings - Fork 6.8k
Closed
Labels
P4A relatively minor issue that is not relevant to core functionsA relatively minor issue that is not relevant to core functionsarea: material/grid-list
Description
Bug Reproduction
<mat-grid-list gutterSize="0" cols="14" rowHeight="2:1" [ngStyle]="{background:'#E5E5E5'}">
<mat-grid-tile colspan="1" rowspan="3"></mat-grid-tile>
<mat-grid-tile colspan="2" rowspan="1" [ngStyle]="{background:'lightgreen'}"><span>Header</span></mat-grid-tile>
<mat-grid-tile colspan="8" rowspan="1"></mat-grid-tile>
<mat-grid-tile colspan="2" rowspan="1" [ngStyle]="{background:'lightgreen'}"><span>Header</span></mat-grid-tile>
<mat-grid-tile colspan="1" rowspan="3"></mat-grid-tile>
<mat-grid-tile colspan="12" rowspan="1" [ngStyle]="{background:'red'}">
<mat-grid-list gutterSize="0" cols="8" rowHeight="8:1" [ngStyle]="{width:'100%',height:'100%'}" >
<mat-grid-tile colspan="1" rowspan="1" [ngStyle]="{background:'lightgreen'}">1</mat-grid-tile>
<mat-grid-tile colspan="1" rowspan="1" [ngStyle]="{background:'lightblue'}">2</mat-grid-tile>
<mat-grid-tile colspan="1" rowspan="1" [ngStyle]="{background:'lightgreen'}">3</mat-grid-tile>
<mat-grid-tile colspan="1" rowspan="1" [ngStyle]="{background:'lightblue'}">4</mat-grid-tile>
<mat-grid-tile colspan="1" rowspan="1" [ngStyle]="{background:'lightgreen'}">5</mat-grid-tile>
<mat-grid-tile colspan="1" rowspan="1" [ngStyle]="{background:'lightblue'}">6</mat-grid-tile>
<mat-grid-tile colspan="1" rowspan="1" [ngStyle]="{background:'lightgreen'}">7</mat-grid-tile>
<mat-grid-tile colspan="1" rowspan="1" [ngStyle]="{background:'lightblue'}">8</mat-grid-tile>
<mat-grid-tile colspan="1" rowspan="1" [ngStyle]="{background:'lightblue'}">9</mat-grid-tile>
<mat-grid-tile colspan="1" rowspan="1" [ngStyle]="{background:'lightgreen'}">10</mat-grid-tile>
<mat-grid-tile colspan="1" rowspan="1" [ngStyle]="{background:'lightblue'}">11</mat-grid-tile>
<mat-grid-tile colspan="1" rowspan="1" [ngStyle]="{background:'lightgreen'}">12</mat-grid-tile>
<mat-grid-tile colspan="1" rowspan="1" [ngStyle]="{background:'lightblue'}">13</mat-grid-tile>
<mat-grid-tile colspan="1" rowspan="1" [ngStyle]="{background:'lightgreen'}">14</mat-grid-tile>
<mat-grid-tile colspan="1" rowspan="1" [ngStyle]="{background:'lightblue'}">15</mat-grid-tile>
<mat-grid-tile colspan="1" rowspan="1" [ngStyle]="{background:'lightgreen'}">16</mat-grid-tile>
</mat-grid-list>
</mat-grid-tile>
<mat-grid-tile colspan="12" rowspan="1" [ngStyle]="{background:'lightgreen'}"><span>Observations</span>
</mat-grid-tile>
<mat-grid-tile colspan="14" rowspan="1" [ngStyle]="{background:'#E5E5E5'}"><span>Tabs</span></mat-grid-tile>
</mat-grid-list>
Expected Behavior
I should be able to see all numbers from 1 to 16, translates to both rows of inner grid
Actual Behavior
I only see numbers from 9 to 16, translates to only second row is visible of the inner grid even when space if available(marked by red bg color of the inner grid)
Environment
- Angular:8.2.14
- CDK/Material:8.2.3
- Browser(s):Chrome 78
- Operating System (e.g. Windows, macOS, Ubuntu): macOS
leogout
Metadata
Metadata
Assignees
Labels
P4A relatively minor issue that is not relevant to core functionsA relatively minor issue that is not relevant to core functionsarea: material/grid-list