where is HTML Markup example for a "select"?

I tried the following:

`

`

The {{options}} returns an array.
JSON.stringify(this.options) "[{"id":1,"value":"Email"},{"id":2,"value":"Twitter"}]"

This results in a huge dump from webix_debug.js w/ message: Data loading error consult your console.

Figured it out!

This works for “select” and “radio” so far.

The HTML Markup is:
data-options='json://{{options}}'

The javascript function “options”

return JSON.stringify(this.options);