This question is locked. New answers and comments are not allowed.
Hi,
When I am using the MVC Grid Beta (2010.2.713) and setting the RowAction as below, the Selectable stops working and I lose the hover funcationlity as below:
Thanks,
George
When I am using the MVC Grid Beta (2010.2.713) and setting the RowAction as below, the Selectable stops working and I lose the hover funcationlity as below:
<% Html.Telerik().Grid(Model.AvFaxActiveBriefings) .Name("Grid") .DataKeys(d => d.Add(x => x.AvFaxid)) .Columns(columns => { columns.Bound(x => x.AvFaxid).Title("ID"); columns.Bound(x => x.AvFaxNumber).Title("Number"); columns.Bound(x => x.DateIssued).Title("Issued"); columns.Bound(x => x.UpdateTill).Title("Update"); columns.Bound(x => x.Format); columns.Bound(x => x.Target); columns.Bound(x => x.Content); }) .Selectable() .RowAction(row => { if(row.Index % 2 == 0) { row.HtmlAttributes["style"] = "background:#F0F0F0;"; } }) .Footer(false) .Render(); %>Thanks,
George