• Vladimir Gergiev
  • NEWBIE
  • 45 Points
  • Member since 2015
  • SF dev
  • Softheme LLC


  • Chatter
    Feed
  • 1
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 4
    Questions
  • 11
    Replies
Hello All,
     I'm stuck in the middle of this problem I don't know how check from which source user page extrated. If I open user page first in salesforce classic and after I switch it to Lightning.
Thanks to all of you in advance

Regards'
Taresh Pandey
Hi All,
In Summer'16 SFDC open for us EmailMessage object with Enhanced Email feature, so now we can create create emails instead of Task.
But my probles is that Lead and Contact objects are not available for RelatedTo field.
There are no custom email service in org yet.

Someone knows how to enable this object for emailMessage?
Hello collegues,
I have faced with issue, that I can't find complete reference for Aura Framework.
List of used sources:
1. Aura Framework reference (global) : http://documentation.auraframework.org/auradocs#
2. Reference on my org : https://eu5.lightning.force.com/auradocs/reference.app#
3. Aura Open Source Developer’s Guide https://github.com/forcedotcom/aura/blob/master/aura_oss.pdf

For example, please, take a look on "aura:component" in Aura reference (1) and myorg.reference  (2) there are no information about components attributes. But in Aura dev guide (3) specified 10 attributes.

Can someone help me to find complete reference?
Hello guys,
I wanted to test components but has faced that documentation for component can't be added.
For test i used component created during passing trailhead "Quick Start: Lightning Components (https://developer.salesforce.com/trailhead/project/quickstart-lightning-components)" for documentation was took fragment from "Lightning Components Developer’s Guide" (https://resources.docs.salesforce.com/sfdc/pdf/lightning.pdf) p.61
Here is code examples and screenshots:
Component:
<aura:component controller="MyContactListController">
	<aura:handler name="init" action="{!c.myAction}" value="{!this}" />
    <aura:attribute name="contacts" type="Contact[]" />
    
    <ul>
<aura:iteration items="{!v.contacts}" var="contact">
<li class="minli"> <h3>{!contact.Name}</h3> </li>
</aura:iteration>
</ul> 
</aura:component>


JS controller:
({
	myAction : function(component, event, helper) {
		var action = component.get("c.getContacts");
action.setCallback(this, function(data) {
component.set("v.contacts", data.getReturnValue());
});
$A.enqueueAction(action);

	}
})
Documentation:
<aura:documentation>
    <aura:description>
        <p>An <code>np:MyContactList</code> component represents an element that executes an action defined by a controller.</p>
        <!--More markup here, such as <pre> for code samples-->
    </aura:description>
    <aura:example name="myComponentExample" ref="np:myComponentExample" label="Using the np:MyContactList Component">
	<p>This example shows a simple setup of <code>MyContactList</code>.</p>
    </aura:example>
    <aura:example name="mySecondExample" ref="np:mySecondExample" label="Customizing the np:MyContactList Component">
       <p>This example shows how you can customize <code>MyContactList</code>.</p>
    </aura:example>
</aura:documentation>


And here are screenshots:

User-added imageUser-added imageUser-added image
What am i doing wrong?
Hi everyone,
I'm talking about page that opens after component creation.
I know that description can be filled during creating component, but is there an ability to change it after creation?
User-added image
Thanks for attention.
Hi All,
In Summer'16 SFDC open for us EmailMessage object with Enhanced Email feature, so now we can create create emails instead of Task.
But my probles is that Lead and Contact objects are not available for RelatedTo field.
There are no custom email service in org yet.

Someone knows how to enable this object for emailMessage?
Hello collegues,
I have faced with issue, that I can't find complete reference for Aura Framework.
List of used sources:
1. Aura Framework reference (global) : http://documentation.auraframework.org/auradocs#
2. Reference on my org : https://eu5.lightning.force.com/auradocs/reference.app#
3. Aura Open Source Developer’s Guide https://github.com/forcedotcom/aura/blob/master/aura_oss.pdf

For example, please, take a look on "aura:component" in Aura reference (1) and myorg.reference  (2) there are no information about components attributes. But in Aura dev guide (3) specified 10 attributes.

Can someone help me to find complete reference?
Hello All,
     I'm stuck in the middle of this problem I don't know how check from which source user page extrated. If I open user page first in salesforce classic and after I switch it to Lightning.
Thanks to all of you in advance

Regards'
Taresh Pandey
Trailhead shows that I didn't complete the chanlenge, but when clicking on the chalenge itself it shows its completed.
it's preventing me from actually complete the module - did any of you had this issue ? if so, how did you solve it ?

User-added image

User-added image
Hi,

  I am new to salesforce1 lighting please help me to add a custom button on Edit action popup window.

thanks.
Hello guys,
I wanted to test components but has faced that documentation for component can't be added.
For test i used component created during passing trailhead "Quick Start: Lightning Components (https://developer.salesforce.com/trailhead/project/quickstart-lightning-components)" for documentation was took fragment from "Lightning Components Developer’s Guide" (https://resources.docs.salesforce.com/sfdc/pdf/lightning.pdf) p.61
Here is code examples and screenshots:
Component:
<aura:component controller="MyContactListController">
	<aura:handler name="init" action="{!c.myAction}" value="{!this}" />
    <aura:attribute name="contacts" type="Contact[]" />
    
    <ul>
<aura:iteration items="{!v.contacts}" var="contact">
<li class="minli"> <h3>{!contact.Name}</h3> </li>
</aura:iteration>
</ul> 
</aura:component>


JS controller:
({
	myAction : function(component, event, helper) {
		var action = component.get("c.getContacts");
action.setCallback(this, function(data) {
component.set("v.contacts", data.getReturnValue());
});
$A.enqueueAction(action);

	}
})
Documentation:
<aura:documentation>
    <aura:description>
        <p>An <code>np:MyContactList</code> component represents an element that executes an action defined by a controller.</p>
        <!--More markup here, such as <pre> for code samples-->
    </aura:description>
    <aura:example name="myComponentExample" ref="np:myComponentExample" label="Using the np:MyContactList Component">
	<p>This example shows a simple setup of <code>MyContactList</code>.</p>
    </aura:example>
    <aura:example name="mySecondExample" ref="np:mySecondExample" label="Customizing the np:MyContactList Component">
       <p>This example shows how you can customize <code>MyContactList</code>.</p>
    </aura:example>
</aura:documentation>


And here are screenshots:

User-added imageUser-added imageUser-added image
What am i doing wrong?
hi ,
i unable to enable lighting experiance in my developer edition​.
What will happen if Lightning ready app from appExchange will be setup on sfdc.org with personal accounts?