Hello,
we use an alternative layout and editing of the list item.
After editing or canceling the row with alt layout, the alternative layout disappears and is replaced with the default layout.
How can this be fixed?
we use an alternative layout and editing of the list item.
$(
"#listView"
).kendoListView({
pageable:
true
,
selectable:
'single'
,
navigatable:
false
,
editable:
true
,
dataSource: viewModel.dataSource,
template: $(
"#customListViewTemplate"
).html(),
altTemplate: $(
"#customListViewTemplateAlt"
).html(),
editTemplate: $(
"#editTemplate"
).html()
});
How can this be fixed?