or
function onClose() { var selected = $.map(this.select(), function(item) { return $(item).text(); }); $("#safekeep").text = selected.toString;}Any suggestions? Or is there a tutorial somewhere for this?
<img src='@Url.Action( "ShowFoto", "Pacientes", new {id = Model.Id} )' />public ActionResult ShowFoto(int id){ var imageData = _db.Pacientes.Find(id).Foto; if (imageData != null) { return File(imageData, "image/jpg"); } return null;}public ActionResult Index(MovieViewModel model, GridCommand command){...}columns.Template(p =>{@<a href="#"onclick="GetListOfVendorsByCountyAndProductType('@p.County', '@p.ProductTypeId.ToString()', '@p.OrderId');">Select Vendor</a>; });.ToolBar(commands => commands.Create(false)).ToolBar(commands => commands.Create(Model.EnableCreate))