Just wondering if there is a way in a UI to swap elements between groups/panels easily?
Is the general modus operandi to clear out the whole UI and rebuild?
Many thanks, Alan.
Currently I'm using
if(doubleUp==true&&group1.children.length>9){//send the next items to a new group}
Works fine, but needs a rebuild of the UI.
This is working for me as a good workaround.
if(btnGrp2.children<5){var whichGroup=btnGrp2;}else{var whichGroup=btnGrp3;}
So as it builds, if a group is underpopulated, elements are sent back to it from a later group.