Remove row from ui.list

There are some way to remove rows after row is append to view “list”?

I try to do this in “onAfterLoad”, but every row that its innerHtml is empty does not locate it.

i load data in table like this

$$(“list”).parse(data);

In ui.list i get a “template” property and return the result of my custom getRow function wich return a html string, sometimes getRow function return “”, and is added to list, but i need that when return “” not added, or remove those that are “”.
Please check snippet:

https://snippet.webix.com/dxjrr625

thanks in advance

Hello @jorge,
In such case you can use filtering functionality:

Thanks annazankevich,