This question is locked. New answers and comments are not allowed.
I'm using a MVC Grid in Server binding mode. The view gets a collection of the following DTO's:
public class PictureDto : object
{
public readonly Image Picture;
public readonly string Name;
public PictureDto( Image picture, string name)
{
Picture = picture;
Name = name;
}
}
NOTE: Image is from System.Drawing
this is the model declaration in the view:
@model System.Collections.Generic.ICollection<TelerikMvcDropZone.Models.PictureDto> How do I declare my Gird (Columns) to have the image rendered?