Datatable ignoring mapping after modifying data

I’m trying to use a Webix datatable with a Backbone collection. When the collection is initially loaded, the data displays fine. However, after modifying a model in the collection, it appears that the mapping is ignored, resulting in nested properties being displayed as [object Object]. See the example below:

http://webix.com/snippet/92397085

Is there a workaround or fix for this?

Any advice? Still haven’t been able to get this to work properly, unfortunately.

Map is applied only during the initial dataset loading ( and for newly added elements ), it is not applied during updates.

It is possible to provide a custom $scheme (kind of advanced mapping)

http://webix.com/snippet/8c6a9077

or just use template and custom filter function

http://webix.com/snippet/7ab52dde

Fantastic, works perfectly. Thank you!