i need to add an additional column to my WebGrid, the new colume should contain an HTML5 audio based on one of the record's fields. something like that:
<audio controls="controls">
<source src="@string.Format("{0}{1}", @item.SongID.ToString(), ".mp3")" type="audio/mp3"/>
Your browser does not support the audio element.
</audio>
does webgrid supports such a scenario?
Thank! ofer