• Kevin Rice 36
  • NEWBIE
  • 0 Points
  • Member since 2018

  • Chatter
    Feed
  • 0
    Best Answers
  • 1
    Likes Received
  • 0
    Likes Given
  • 2
    Questions
  • 0
    Replies
In the documentation for the lightning:inputAddress aura component, there is a showAddressLookup attribute that indicates a Google Address Lookup feature will appear if it is set to true. In testing, however, I have not found this to be the case. Any ideas or has anyone encountered the same? Component is on version `44.0`. 

Basic code sample: 
<lightning:inputAddress
      showAddressLookup="true"
      ... other attributes
/>

 
I believe I have found a bug in the Salesforce runtime, where an inner schedulable class enqueues its outer queueable class. Example: 
 
public class OuterQueueable implements Queueable{ 
    public void execute(QueueableContext qc){ 
        // code here 
    } 

    public class InnerSchedulable implements Schedulable{ 
        public void execute(SchedulableContext sc){ 
            System.enqueueJob(new OuterQueueable()); 
        } 
    } 
}

Every time I have tried using this pattern it fails silently. Has anyone else encountered this, and/or is there documentation on this phenomenon?
In the documentation for the lightning:inputAddress aura component, there is a showAddressLookup attribute that indicates a Google Address Lookup feature will appear if it is set to true. In testing, however, I have not found this to be the case. Any ideas or has anyone encountered the same? Component is on version `44.0`. 

Basic code sample: 
<lightning:inputAddress
      showAddressLookup="true"
      ... other attributes
/>