Is there a way to seamlessly merge two grids as one larger grid without altering the current HTML structure?
Currently, it displays as:
Child[0]
Child[1] Child[2] Child[3]
I would like it to display as:
Child[0] Child[1] Child[2] Child[3]
<div id="TNTemplate" class="row">
<div id="Child[0]" class="col-md-4">First Instance of Stuff</div>
</div>
<div id="TNPlaceHolder" class="row">
<div id="Child[1]" class="col-md-4"> First Clone of First Instance of Stuff</div>
<div id="Child[2]" class="col-md-4"> Second Clone of First Instance of Stuff</div>
<!-- A bunch more rows -->
<div id="Child[3]" class="col-md-4"> Tenth Clone of First Instance of Stuff</div>
Thank you for any help provided!