I have an application developed against NetAdvantage WPF 7.2 which was working as designed. I upgraded to the 9.1 control and everything works (some things are fixed!!) but the 9.1 broke my column width formatting.
I have a layout as follows
.....
<igDP:FieldSettings x:Key="editableFieldSettings" AllowEdit="True" CellClickAction="EnterEditModeIfAllowed" CellWidth="25" AllowResize="False"/>
....
Is there a breaking change in the new control that affects how columns are sized?!? I can change the value in the CellWidth but it doesn't change the display. The result is a much wider first column.
Any thoughts on this?
Hello timhenn,
My initial thoughts on this are to make sure that the Field's LabelWidth is also set to '25'.
Your initial thoughts are apparenty all you need :) That fixed the problem. Note, labels are not displayed on my grid and in the old version this setting (if it existed) had no impact on the display. Easy enough fix since the style is all in one place. Thanks!!