[SOLVED] Suggest tree

Hi…

I can load data into suggest tree. I using flat records like structure, with “parent_id”. I copy this example:
https://webix.com/snippet/66c11a75

but, suggest tree not accept property “datatype”

var suggest_categories = {
    view: 'datasuggest',
    type: 'tree',
    datatype: 'plainjs',
    width: 400,
    body: {data: []},
}

That I’m doing wrong, thanks in advance

I resolved with:

        var values = data.json()
        $$('categoria').getList().parse(values, 'plainjs')

Thanks