I am having a telrik grid in my MVC 3.0 application. In grid
I want to disable one of my column based on dates .
{Html.Telerik().Grid(Model.PostedDocument)
.Name("PostedDocumentsGrid")
.HtmlAttributes(new { @class = "grid scroll-pane" })
.Columns(columns =>
{
columns.Bound(o => o.DocumentLabel).Title(ResourceHelper.GetMessage("Posted_DocumentName")).Template(@@item.DocumentLabel ).Width(180)
I have a property in model which brings the expiray date
from DB & if the expiry date is less or todays date has passed the expiry
date (i.e DateTime.Now) then the link of the above column needs to be disabled
or the data in that column(i.e links) needs to be disabled , it shud not get
clicked
Anonymous User
20-Nov-2014.ClientTemplate("<#if(condition){#><a href=\"WaitingApprove/<#= LatestVersionId #>\">" + "if link" + "</a><# }
else{#><a href=\"Edit/<#= Id #>\">" + "else link" + "</a> <# } #>")