i have a mvc grid where i want to bind images which are saved as url in database.I am new to mvc grid.please help me out.Thanks..
This is the code:
@using GridMvc.Html
@Html.Grid(Model).Named("SalesDueOrderListPartial").Columns(columns =>
{
columns.Add(c => c.OrderNo).Titled("Order No").Filterable(true);
columns.Add(c => c.ImageUrl).Titled("Image").Filterable(false);
}).WithPaging(@ViewBag.paging).Sortable(true)
Try this