Hi,
I can't reproduce the default multiselect widget with ownerID field in my custom edit template.
My widget doesn't use the value of the double-clicked line (timeline view).
Can you give me the code for the default template / edit function of the timeline view ?
<
div
data-container-for
=
"ownerId"
class
=
"k-edit-field"
>
<
select
id
=
"ownerId"
data-bind
=
"value:ownerId"
data-role
=
"multiselect"
data-value-field
=
"value"
data-text-field
=
"text"
></
select
>
</
div
>
edit: function(e) {
var ownerId = e.container.find("#ownerId").data("kendoMultiSelect");
ownerId.dataSource.data(e.sender.resources[1].dataSource.data());
}