column name = 'id' in datatable

Hi Webix Team,
I have the following subset of data, I have a field called ‘id’, in datatable when I click to any row containing id = ‘8229’ all rows with the same id are selected. How can I avoid this behaviour?
many thanks in advance for your help.

var data: [
{
“id”: “8229”,
“user”: “Smith”
},
{
“id”: “8229”,
“user”: “Smith”
},
{
“id”: “1829”,
“user”: “admin”
}
]

ID is a required attribute for all data items, related to all data operations and should be unique. The same ID for several items causes a conflict in the DataStore.

I can only suggest you change this key to another to avoid any issues with data processing. If it can’t be done, you can try to use Webix features on the client side:

With inline data, it is possible with a custom datatype: http://webix.com/snippet/7d21aae6

With data loading - through a custom proxy object.

great solution ! thanks