Webix component use from markup( HTML)

Most of the example given on the site show how to use the webix component from code (JS) , I am using angular approach for development where I define my UI in Markup(HTML) and models in JS, Is there any documentation for webix component from markup use? For e,g. I am trying to do simple column resize, but following markup is not working

     <div webix-ui view="datatable" webix-data="records" select="row"  resizecolumn="true" id="grid">      

Any Idea?

Check http://webix.com/snippet/24054d23

The camelCase attributes from json, such as resizeColumn:true are translated to the dash separated HTML attributes resize-column='true'

Cool, This is good news , Thanks
Toshendra