Skip to main content

MVCxCardViewColumn.EditorProperties() Method

Allows you to configure CardView columns of different types.

Namespace: DevExpress.Web.Mvc

Assembly: DevExpress.Web.Mvc5.v23.2.dll

NuGet Package: DevExpress.Web.Mvc5

Declaration

public GridColumnEditorPropertiesFactory EditorProperties()

Returns

Type Description
GridColumnEditorPropertiesFactory

A GridColumnEditorPropertiesFactory object that provides methods allowing you to configure different column types.

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;
     });
});
See Also