So, in Kendo, you can bind inputs or spans to your data, like:
1.
<
input
data-bind
=
"value: selected.title"
/>
1.
<
textarea
rows
=
'5'
data-bind
=
"value: selected.interestingNotes"
required></
textarea
>
I have spans, inputs, etc.. in an external editor, but I also need to display a editable grid in the editor, to permit editing of data in one of the columns, based on data in a nested json array in the same dataSource as the original grid.
My question is: Can I bind my nested grid in the external editor to the array of data in the original grid? The array name is, for example 'approvers', so I thought it would look something like:
1.
<
div
id
=
"Grid"
data-role
=
"grid"
data-bind
=
"source: selected.approvers"
>
Thank you!