• Ramapuram Sandeep Kumar
  • NEWBIE
  • 0 Points
  • Member since 2021

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 1
    Replies
This page has an error. You might just need to refresh it. Action failed: c:LightUIcomponent2$controller$callme [omponent is not defined] Failing descriptor: {c:LightUIcomponent2$controller$callme}
    when i am going to run lighting application i am getting this error 

>>1   Component 

<aura:component >
    <ui:inputText label="Enter Name" placeholder="employee Name" aura:id="name"/>
    <ui:inputText label="My name" aura:id="Myname"/>
    <ui:button label="submit" press="{!c.callme}"/>
</aura:component>
>>>>>>>>>>>>>>2 contoller
({
    callme :function(component) {
        var name=component.find("name").get("v.value");
                omponent.find("my name").get("v.value",name);

        
    }
}) 
3>>>>>>>>>>>>application 3
<aura:application >
    <c:LightUIcomponent2/>
</aura:application>

i am learning lighting >.please help me out