When I set the CellsVerticalAlign property like below it looks like it has no effect (always centered)
<Grid
<Columns>
<Column DataField=”Date” Label=”Date” CellsVerticalAlign=”VerticalAlignment.Top”></Column>
</Columns>
It works when I set the property programmatically like
<Grid
Columns=”@columns”
Layout=”@gridLayout”>
</Grid>
GridLayout gridLayout = new GridLayout()
{
AllowCellsWrap = false
};
GridColumn gridColumn = new GridColumn()
{
Label =”Date”,
DataField =”Date”,
CellsVerticalAlign = VerticalAlignment.Top
}
…
columns = ….
But when the GridLayout property is set as follows CellsVerticalAlign also doesn’t work:
GridLayout gridLayout = new GridLayout()
{
RowHeight = “auto”,
AllowCellsWrap = true
};