This question is locked. New answers and comments are not allowed.
Hi,
i have a clienttemplate for my column like this
so what i need is somthing like this. The status arrives from Database when the value is NULL
if status=nothing then
Thanks for any help
i have a clienttemplate for my column like this
.ClientTemplate("<img width='16' height='16' alt='<#= Status #>' title='<#= Status #>' src='" + Url.Content("~/Content/Images/Status/") + "<#= Status #>.png' />")so what i need is somthing like this. The status arrives from Database when the value is NULL
if status=nothing then
.ClientTemplate("<img width='16' height='16' alt='<#= Status #>' title='<#= Status #>' src='" + Url.Content("~/Content/Images/Status/nothing.png' />")else
.ClientTemplate("<img width='16' height='16' alt='<#= Status #>' title='<#= Status #>' src='" + Url.Content("~/Content/Images/Status/") + "<#= Status #>.png' />")end if
Thanks for any help