Is it possible to bind a checkbox in an item template of a ListView to a datasource property without using a edit template.
For example:
For example:
<
script
type
=
"text/x-kendo-tmpl"
id
=
"template"
>
<
div
>
<
dl
>
<
dt
>Name</
dt
> <
dd
>${Name}</
dd
>
<
dt
>Age</
dt
> <
dd
>${Age}</
dd
>
<
dt
>Checked</
dt
> <
dd
><
input
type
=
"checkbox"
data-bind
=
"checked:DataSourceBooleasProperty"
/></
dd
>
</
dl
>
</
div
>
</
script
>
$(
"#listView"
).kendoListView({
dataSource: {
data: createRandomData(50)
},
template: kendo.template($(
"#template"
).html())
});