how can i split elements of a model into two equally sized pieces so that i can show them in two columns?
i have this:
element 1
element 2
element 3
element 4
element 5
and i want this:
element 1 element 4
element 2 element 5
element 3
split()
unfortunately removes the middle element.