comparison Agendas/trunk/src/Agendas.Web/Views/Shared/DisplayTemplates/Tooltip.cshtml @ 86:723aed93a0e6

Template de Object y Tooltip
author nelopauselli
date Wed, 25 May 2011 01:53:31 -0300
parents
children
comparison
equal deleted inserted replaced
85:8a4135f019dd 86:723aed93a0e6
1 @{
2 string tooltip=null;
3 tooltip = ViewData.ModelMetadata.Description;
4 }
5
6 @if (tooltip != null)
7 {
8 <img title='@tooltip' src='@Url.Content("~/Content/question.jpg")' width='20' height='20' border='0' align="middle" style="vertical-align: top;"/>
9 }