使用水平滚动时的GridView列大小

时间:2019-06-18 09:01:16

标签: c# asp.net-mvc devexpress

我的问题是我的某些表列不完全可见。我想使自动调整列宽。

settings.Columns.Add(c =>
        {
            c.FieldName = "Customer_Mail";
            c.Caption = "Customer Mail";
            c.Settings.FilterMode = ColumnFilterMode.DisplayText;
            c.Width=??; // -> Here is the problem I think
        });

1 个答案:

答案 0 :(得分:0)

使用任何Fixed Table Layout选项(例如“水平滚动”)时,必须手动指定列的宽度。