(Component):moveAfter
Move the component after one of it's siblings.
Synopsis
Parameters
siblingstring or Component- Can be an ID of a sibling, or the sibling component itself.
Returns
componentComponent- Returns the caller table, so it can be chained
Examples
local container = mintmousse.get("container")
container.moveAfter("otherContainer")
container.moveAfter(mintmousse.get("container"))