I need to add a scope attribute to make the KendoUI Grid 508 Compliant. How do I do that?
<th scope="col" </th>
<th scope="row"></th>
@(Html.Kendo().Grid <PGC.Administration.ViewModels.UsersVM>().Name("users")
.Columns(columns =>
{
columns.Bound(p => p.UserName);
columns.Bound(p => p.FirstName);
columns.Bound(p => p.LastName);
columns.Bound(p => p.Email);
columns.Bound(p => p.LastLoginDate).Format("{0:MM/dd/yyyy hh:mm}");
columns.Bound(p=> p.UserPONames).Title("Program Office Names");
columns.Bound(p=> p.UserRoleName).Title("User Role Names");
columns.Command(command => { command.Custom("Edit").Click("showCreate");@* command.Destroy().Text(" ");*@ }).Width(150);
})