¿Cómo puedo conseguir este trabajo en MVC Telerik Grid ControlMVC Telerik Grid Columna condicional ¿Valor?
columns.Template(e =>
{
if (e.EndDate>DateTime.Now)
{
@Html.ActionLink("Stop", "StopMedication", "Medication",
new { id = e.PrescriptionID }, new { @class = "standard button" })
}
else {
@Html.ActionLink("Renew", "RenewMedication", "Medication",
new { id = e.PrescriptionID }, new { @class = "standard button" })
}
});
Impresionante respuesta. Esto es algo que he estado tratando de resolver durante meses. –
Hola @carlbergenhem, Muchas gracias .... –
Gracias - esta solución funcionó bien. – cyclical