• Shane James 13
  • NEWBIE
  • 0 Points
  • Member since 2018

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 3
    Replies
Hi,
Am trying to create a simple Bot from Einstein Bot Builder,As per the instructions created and configured but 
1. When i click on Train Bot getting below error "Looks like your training job didn’t complete. Try again."
2. Status should be success to connect Bot ?
3. Getting below error when we do preview from builder.
Please share your thoughts/ Links if any one configured successfully.
User-added image
User-added image
User-added image

Reference :
https://www.salesforce.com/video/1756700/
https://www.youtube.com/watch?v=i9TbAkRNNa0



Thanks
Deepika
 
I am the beginner in salesforce.
Please help me.
What is trigger execution?
  • May 27, 2018
  • Like
  • 0
I have a picklist with an onchange event bound to it.
When I select a value in the picklist, I get the following error message :
This page has an error. You might just need to refresh it. Error in $A.getCallback() [b.run is not a function] Failing descriptor: {lightning:select}

Component :
 
<aura:component>
    
    <aura:attribute name="colors" type="String[]"/>
    <aura:attribute name="selectedColor1" type="String"/>
    
    <aura:handler name="init" value="{!this}" action="{!c.loadOptions}" />
    
    <lightning:select aura:id="select1-id" value="{v.selectedColor1}" onchange="{c.onChangeColor}" name="picklist1" label="Select a Color"  >
        <option value="">-- None --</option>
        <aura:iteration items="{!v.colors}" var="color">
            <option value="{!color.value}" text="{!color.label}"></option>
        </aura:iteration>
    </lightning:select>
    
</aura:component>
Controller :
({
    loadOptions: function (component, event, helper) {
        var opts = [
            { value: "R", label: "Red" },
            { value: "G", label: "Green" },
            { value: "B", label: "Blue" }
         ];
         component.set("v.colors", opts);
    },
    onChangeColor: function (component, event, helper) {
        //var myColor = event.getSource().get("v.value");
        //var test;
    }
})