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
raju p 4raju p 4 

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}

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
brahmaji tammanabrahmaji tammana
Hi,

There is some typo error in controller. It was entered like omponent instead of component

Thanks
Brahma
raju p 4raju p 4
I Corrected That One I am getting Same Error
brahmaji tammanabrahmaji tammana
what exactly you are trying here ?
brahmaji tammanabrahmaji tammana
You might  be trying to set the Enter Name to My Name.

If that is the case , update the controller with this code.
({
    callme :function(component) {
        var name=component.find("name").get("v.value");
        component.find("Myname").set("v.value" , name);       
    }
})

Thanks
raju p 4raju p 4
 i want get value in above intext to beelow text value. 
 
Lewis HowelLewis Howel
Hi all, I'm getting a very similar error, as below, but it comes up everytime I open any flow. Also worth noting that I can not load any actions when I drag the element onto canvas.

I have raised with SF support, but...they are SF support... Any ideas welcome!

This page has an error. You might just need to refresh it. [ui.services.exceptions.ServiceException: com.sforce.ws.ConnectionException: Exception occurred in direct soap call] Failing descriptor: {markup://builder_platform_interaction:serverDataLib}
Ramapuram Sandeep KumarRamapuram Sandeep Kumar
Hello Raju,

({
    callme : function(component) {
        var name=component.find("name").get("v.value");
                component.set("Myname",name);        
    }
})