romain
1
I have a form with batch method.
If I declare “elements” and set objects , there is no problem :
http://webix.com/snippet/78bb6ffd
But , I want to use objects in cols and rows , the batch method doesn’t work:
http://webix.com/snippet/045de07c
Is it normal ?
Thanks
Helga
2
Batches work within one layout row or column, so you need to alter you sample:
view:"form", cols: [
{ visibleBatch: 2, id:"col1", rows : [ ... ] },
{}
]
And call the .showBatch()
method of the col1
layout:
$$("col1").showBatch(1);
Please, check the following snippet: http://webix.com/snippet/8af0fcf5