How i can define column filter from HTML markup?

The column is :
{
id: “rank”, header: ["#", {
content: “textFilter”, placeholder: “Type here to filter the grid”, colspan: 5
}], width: 50, sort: “int”
},
}

and the markup is:

			    <div view="column" id="Name"  header="Rating3">

<–How to configure filter for column–>

I have using angular and maybe i need just implement UI creation from JS? But I’m not sure that is good idea.
Thanks a lot.

There is no way to define such config through pure HTML markup
You can embed json configuration in the HTML though
http://webix.com/snippet/701700b8

Ok. Thank you.