Feb 21, 2020, 7:58 AM
[FIXED] [#1694] Grid number column alignment - mismatched Center and Right enumeration
Hello support team,
we just installed Ext.NET 5.1 in the hope that the old bug in aligning numeric columns in the grid will be resolved... unfortunately not. Because it looks like an ordinary typo, I won't send a test case, the code snippet should clarify this issue. If column alignment is specified in the model,
Kind regards
Dan
we just installed Ext.NET 5.1 in the hope that the old bug in aligning numeric columns in the grid will be resolved... unfortunately not. Because it looks like an ordinary typo, I won't send a test case, the code snippet should clarify this issue. If column alignment is specified in the model,
Align = Ext.Net.Alignment.Right
centers the column and vice versa, Align = Ext.Net.Alignment.Center
aligns column to the right:[NumberColumn(Order = 3, Flex = 1, Align = Ext.Net.Alignment.Right)]
[Filter(FilterType.Number)]
public decimal Amount { get; set; }
The definition above results in a centered column.Kind regards
Dan
Last edited by fabricio.murta; Feb 24, 2020 at 7:27 PM.