Users Pricing

forum

home / developersection / forums / how to use conditions in telerik grid?

how to use conditions in telerik grid?

Jayden Bell 2964 20 Nov 2014

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


Jayden Bell

Other


1 Answers