• DTI - Emer Ingeniero
  • NEWBIE
  • 0 Points
  • Member since 2014
  • Software Engineer
  • State of Delaware - DTI

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 3
    Questions
  • 1
    Replies
I'm trying my hand using Lightning components and I need help as to why the SVG image on the button, which in this case is the down arrow, won't show up unless I hover on it as indicated by the yellow marker in the screenshot.

Missing Down Arrow

The code I have is as follows:
 
<div aura:id="options"
	 class="slds-dropdown-trigger slds-dropdown-trigger--clicked" aria-expanded="true">
	<button class="slds-button slds-button--icon-border-filled" aria-haspopup="true"
			onclick="{!c.toggleShowOptions}">
		<c:svgIcon svgPath="/resource/slds100/assets/icons/utility-sprite/svg/symbols.svg#down" 
				   category="utility" 
				   size="x-small" 
				   name="down" 
				   class="slds-button__icon slds-button__icon--hint" />
		<span class="slds-assistive-text">Show More</span>
	</button>
	<div class="slds-dropdown slds-dropdown--right">
		<ul class="dropdown__list" role="menu">
			<li class="slds-dropdown__item">
				<a href="#void" role="menuitem"
				   data-contactid="{!roCertifiedOperator.Id}"
				   onclick="{!c.deleteROCertifiedOperator}">
					<p class="slds-truncate">Delete</p>
				</a>
			</li>
		</ul>
	</div>
</div>




Please help.




 
I'm not really a javascript developer but as I understood it I need to have some/good javascript skills. Is there a recommendation for tutorial for learning javascript as it relates to Lightning?
Is ligtning builder requestable for pilot yet?
Is ligtning builder requestable for pilot yet?