Hello,
How can we put 2 buttons in the same line (in a form) with the new version DHTMLX Touch RC ?
With 1.0, you can create any layout in form , by using “cols” and “rows” collection
{ view:"form", elements:[
{view:"button"}, //normal button
{ cols:[ //two buttons on the same line
{view:"button"},
{view:"button"}
]}
]}