function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Alexander AtkinsonAlexander Atkinson 

Lightning Component: Set max columns per row in a table?

Hi, in my lightning component I have a series of tables generated and displayed each in their own column through an Aura:Iteration.
The problem is I have 60 items or more to display.

Is there any way to set a max columns per row? So once it has generated 10, it moves onto row 2 to create another 10 and so on.

Component Code:
<div class="columns">
    <aura:iteration items="{!v.allTables}" var="Table">
        <c:Pipeline title="{!Table.Name}" titleid="{!Table.Id}" items="{!v.allItems}"></c:Pipeline>
    </aura:iteration>
</div>
Gulafsha MohammedGulafsha Mohammed
Can you post your pipeline component too?