Hi,
I am trying to bind(2-way) a boolean column to a checkbox,
So far I have managed to do it one way bind like this:
I am trying to bind(2-way) a boolean column to a checkbox,
So far I have managed to do it one way bind like this:
columns.Bound(o => o.Status0).Width(40).Title("0").ClientTemplate("<
input
type
=
'checkbox'
value
=
'true'
name
=
'Status0_\\#=Id\\#'
" + "\\#=Status0?'Checked':''\\#" + "/>");
How can I bind it 2 ways, do anyone have a sample of how to do that ?.
Thanks
Ole