Does kendo MVVM support this type of scenario?
http://jsfiddle.net/stevescotthome/sqbXP/3/
Where the "Add new" and "Edit" are popup windows to edit\add sites.
I have this working in knockout, but I like the kendo datasource implementation a bit better than having to use a separate mapping plugin.
Like I don't see any $root. or $parent style binding samples to let me link an element to a viewmodel calculated function
(Also, it supports this type of stuff right?)
http://jsfiddle.net/stevescotthome/sqbXP/3/
Where the "Add new" and "Edit" are popup windows to edit\add sites.
I have this working in knockout, but I like the kendo datasource implementation a bit better than having to use a separate mapping plugin.
Like I don't see any $root. or $parent style binding samples to let me link an element to a viewmodel calculated function
(Also, it supports this type of stuff right?)
viewModel.selectedSite = ko.observable();viewModel.editItem = function (item) { viewModel.selectedSite(item);};