MVC3.0アプリケーションにtelrikグリッドがあります。グリッドで、日付に基づいて列の1つを無効にします。
{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)
モデルにプロパティがあり、DBから有効期限を取得します。有効期限が短いか、今日の日付が有効期限を過ぎている場合(つまり、DateTime.Now)、上記の列のリンクを無効にするか、その中のデータを無効にする必要があります。列(つまりリンク)を無効にする必要があります。クリックされないようにする必要があります。
どんな助けでもありがたいです。