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
Terry411Terry411 

ui:scrollerWrapper is prevent me from clicking the component it's wrapped around

I have a lightning component that works great until I put a ui:scrollerWrapper around it.  The scrolling works perfectly but the child component has click events like clone, edit, delete that stop working.  I'm new to this type of development so I'm hoping it's just something simple.
<ui:scrollerWrapper class="sWrapTest">
    <aura:iteration items="{!v.items}" var="item">
        <c:OpportunityLineItem item="{!item}" entries="{!v.entries}" editMode="{!v.editMode}"></c:OpportunityLineItem>
    </aura:iteration>
</ui:scrollerWrapper>
.THIS .sWrapTest {
    height:320px;
    width: 100%;
    clear: both;
}