• ghuroo
  • NEWBIE
  • 12 Points
  • Member since 2017

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 3
    Questions
  • 4
    Replies
Hi,

I'm used to work with Eclipse/Visual Code/Sublime/Atom and so far I can't get Trailhead Playgrounds to work with any of these.

How can I develop for Trailhead Playgrounds using any IDE and not the Developer Console?

I believe I already configured Force.com IDE to work with my DE org but my TP projects don't show.
  • October 16, 2017
  • Like
  • 0
Hi,

I'm used to work with Eclipse/Visual Code/Sublime/Atom and so far I can't get Trailhead Playgrounds to work with any of these.

How can I develop for Trailhead Playgrounds using any IDE and not the Developer Console?

I believe I already configured Force.com IDE to work with my DE org but my TP projects don't show.
  • October 16, 2017
  • Like
  • 0
This happened to me with a specific Chrome Extension, but it might happen with other extensions.

In my case, when the React-Sight chrome extension is enabled, the Salesforce Lightning Platform encounters a generic error: "[NoErrorObjectAvailable] Script error.".
This does not happen when using the Salesforce Classic Platform.

Temporary solution: Just disable the conficlting extension (in this case, React-Sight).

Error
Extensions Installed
  • October 13, 2017
  • Like
  • 0
Hi,

I'm used to work with Eclipse/Visual Code/Sublime/Atom and so far I can't get Trailhead Playgrounds to work with any of these.

How can I develop for Trailhead Playgrounds using any IDE and not the Developer Console?

I believe I already configured Force.com IDE to work with my DE org but my TP projects don't show.
  • October 16, 2017
  • Like
  • 0
Hi,
  I use Import wizard click lead,has an Error:
 “This page has an Error ,you might just need to refresh it.[NoErrorObjectAvailable]Script error.”
  Use Mac computer,safari。
 User-added image
Hi,

I'm stuck with a Lightning component that doesn't render. I get a strange error immediately: This page has an error. You might just need to refresh it. Error during init [Cannot read property 'apply' of undefined].

I'm stuck now for a long time and can't figure out what is wrong with the code. Here you can see my code:

Component:
<aura:component controller="CaseActivityTrackerCtrl" implements="flexipage:availableForAllPageTypes">

	<aura:attribute name="recordId" type="String" default='500b000000cOxah' />
	<aura:attribute name="case" type="Case" />
	<aura:attribute name="tasks" type="Task[]"/>

	<aura:handler name="init" value="{!this}" action="{!c.doInit}"/>

	<c:CaseActivityTrackerHeader />

	<aura:iteration items="{!v.tasks}" var="task">
		<c:CaseActivityTrackerTimeline task="{!task}"/>
	</aura:iteration>

	<aura:iteration items="{!v.tasks}" var="task">
		<h3>{!v.task.Subject}</h3>
	</aura:iteration>

	<h3>{!v.case.Subject}</h3>
	<h3>{!v.recordId}</h3>

</aura:component>
({
    doInit: function(component, event, helper) {
    	//helper.getCase(component, event);
		//helper.getTasks(component, event);
        // Set the attribute value. 
        // You could also fire an event here instead.
        component.set("v.recordId", "controller init magic!");
    }
})
App
 
<aura:application extends="force:slds">
    
    <c:CaseActivityTracker />
    
    <!-- 
    <c:camping />
	-->
    
</aura:application>

I really somebody can help me!
Thanks in advance, Stefan
 
I am trying to copy workflows (field updates and rules) from one org to another using eclipse force.com ide.  I used this source code copy/paste method for fields, validation rules, record types, etc. with no problem.  What went wrong?  I am getting "Error parsing file: Element fieldUdates is duplicated at this location in type Workflow"
Any idea how to fix this?