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(@<text><a href="@Url.Action("DownloadDocument", "ConsentAndDocument", new { documentId = @item.DocumentId })">@item.DocumentLabel</a></text>).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
Any help will be appreciated.
1 Answer