How zo position form controls site by site

Is it possible to position form-controls site by site? :smiley:
exsample in attachment

Yep, instead of

var form = { view:"form", elements:[...] };

you can init form as

var form = { view:"", cols:[ ... ] };

Also, you can have nested cols and rows collections - so any layout is possible

Thanks :exclamation:

yet another question:

Can i use HTML5-Input-Types?
Like
torbenleuschner.de/blog/601/ … -und-mehr/

because i want to display/activate the numeric keyboard on an andorid-phone.

You can use “input” view and define the necessary type for it. For example as in:

{ view:“input”, type:“number”, …},