Is it possible to position form-controls site by site?
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
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”, …},