This question is locked. New answers and comments are not allowed.
Hi All,
I am trying to make the columns in the row of a Grid read-only. I read about this here:
http://www.telerik.com/help/aspnet-mvc/telerik-ui-components-grid-troubleshooting.html
And tried the code. It does not work. Here is the Markup ..
I also want to make the checkboxes in the row that have false values show as clear, not a dimmed grey checkmark. Is that possible?
Any suggestions would be appreciated,
Reid
I am trying to make the columns in the row of a Grid read-only. I read about this here:
http://www.telerik.com/help/aspnet-mvc/telerik-ui-components-grid-troubleshooting.html
And tried the code. It does not work. Here is the Markup ..
.Columns(columns =>
{
columns.Bound(eg => eg.Enabled).Width(100)
.ClientTemplate("<
input
type
=
'checkbox'
disabled
=
'disabled'
name
=
'Enabled'
<#= Enabled? \"
checked
=
'checked'
\" : \"\" #> />");
...
I also want to make the checkboxes in the row that have false values show as clear, not a dimmed grey checkmark. Is that possible?
Any suggestions would be appreciated,
Reid