MVCxGridViewColumn.EditorProperties() Method
In This Article
Allows you to configure GridView columns of different types.
Namespace: DevExpress.Web.Mvc
Assembly: DevExpress.Web.Mvc5.v24.2.dll
NuGet Package: DevExpress.Web.Mvc5
#Declaration
public GridColumnEditorPropertiesFactory EditorProperties()
#Returns
Type | Description |
---|---|
Grid |
A Grid |
#Remarks
settings.Columns.Add(column => {
column.FieldName = "Photo";
column.EditorProperties().BinaryImage(p => {
p.ImageHeight = 170;
p.ImageWidth = 160;
p.EnableServerResize = true;
p.ImageSizeMode = ImageSizeMode.FitProportional;
p.CallbackRouteValues = new { Action = "BinaryImageColumnPhotoUpdate", Controller = "Editing" };
p.EditingSettings.Enabled = true;
p.EditingSettings.UploadSettings.UploadValidationSettings.MaxFileSize = 4194304;
});
});
#Online Examples
See Also