How to define suggest data inside a text or other ui element

I have the following
{ view: "text", id: 'myDynamicText', suggest: { data: [] } }

With a simple suggest I can use .define("data", [new data array]) but how do I access the data inside suggest here?

http://webix.com/snippet/c604c95a

Thanks Sasha, super!

Putting an id inside the suggest, thus:
{ view: "text", id: 'myDynamicText', suggest: {id:'myDynamicSuggest', data: [] } }
also work in combination with the getList().parse([...data...]) trick.

I also think you need getList().clearAll() the parse.

yes!