Bug: select datatable editor doesn't recognize the option with id: 0

The ‘select’ editor doesn’t recognize { id: 0, value: 'xxx' } as an option, but does recognize { 0: 'xxx' }.

https://snippet.webix.com/edg3ixrd

Hello @dandv ,

It’s not a bug. That is a limitation for all Webix Data components, they will not work with such ids as 0, false, null.

Thank you for clarifying that, but why does { 0: 'xxx' } work?

you can use id:"0"
webix checks !obj.id to detect id absence

Turns out this limitation has created problems to others a while ago - see https://forum.webix.com/discussion/4756/combo-select-with-options-item-id-0-get-wrong-form-value

Are things different now? Would it be worth removing this limitation?