1
這是我的Telerik Grid。我想將它轉換成Kendo Grid。
我必須寫這個代碼到劍道電網:Kendo Grid with client template
@(Html.telerik().Grid<MDA.AppEntities.Orders.OrderList(Model.OrderList)
.Name("GridLastOrder")
.Columns(columns =>{ columns.Template(@<text>
@if (item.EventTypeID == 2 || item.EventTypeID == 3)
{
var nurserole = new string[] { OperationRoles.Nurse.ToString() };
if (item.EventTypeID == 2 && nurserole.Any(MDA.AppController.GlobalController.CSRRoles.Isinrole))
{
<a href="@Url.Action("CreateConsultation", "Operations", new { customerID = item.EventPatientID, type = item.EventTypeID, IsEdit = item.Ord_ID })">
Edit/ Modify Consult
</a> <br />
<a href="Javascript:void(0)" onclick="javascript:cancelConsult(@item.Ord_ID)" style="color:Red;">
Cancel
Consult
</a><br />
}
}
</text>).Title("Action Links");
})
.Sortable()) }
我試圖編輯你的問題。編輯將在短時間內被接受。但我無法恢復代碼結構。請再次粘貼並使用代碼工具對其進行格式化。按鈕看起來像'{}' –
它已被編輯了很多次,但代碼仍然看起來很可怕。 @sonu請考慮再次粘貼您的代碼以保持我們的理智 – digawp