You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- For custom template variable names, same rule applies: `row.Property` -> `row.Item.Property`
84
94
85
95
Important: This change applies to DataGrid template contexts only (`DisplayTemplate` in `DataGridColumn`, `DataGridEntityActionsColumn`, etc.). In non-DataGrid templates (for example `TreeView``NodeContent`), `context` is already the item and should remain unchanged (for example `DeleteMenuItemAsync(context)`).
86
96
@@ -90,6 +100,7 @@ DataGrid column `Width` moved from plain string to fluent sizing APIs:
90
100
91
101
-`Width="30px"` -> `Width="Width.Px(30)"`
92
102
-`Width="60px"` -> `Width="Width.Px(60)"`
103
+
-`Width="0.5rem"` -> `Width="Width.Px(8)"` (or another equivalent pixel value)
93
104
-`Width="50%"` -> `Width="Width.Percent(50)"` or `Width="Width.Is50"`
0 commit comments