6
我怎樣才能在MVC Telerik的網格控制MVC Telerik Grid條件列值?
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" })
}
});
令人驚歎的答案。這是我一直試圖弄清楚如何做幾個月的事情。 –
嗨@carlbergenhem, 非常感謝你.... –
謝謝 - 這個解決方案運行良好。 – cyclical