I tried this solution (http://www.telerik.com/support/code-library/submit-form-containing-grid-along-with-other-input-elements), for posting a grid inside an html forum and work correctly.
But if I have a grid with checkboxes I don't understend how I can the true or false value.
I've tried this solution, but doesn't work.
Someone can help me.
Thanks
But if I have a grid with checkboxes I don't understend how I can the true or false value.
I've tried this solution, but doesn't work.
columns.Bound(p => p.Inside).ClientTemplate(
"<
input
type
=
'checkbox'
#= (Inside=== true) ? checked : '' # />" +
"<
input
type
=
'hidden'
name
=
'CAB[#= indexCAB(data)#].Inside'
value
=
'#= Inside#'
/>");
Someone can help me.
Thanks