Skip to main content

Notifications

Community site session details

Community site session details

Session Id :
Power Apps - Power Apps Pro Dev & ISV
Answered

failed to execute on node

(0) ShareShare
ReportReport
Posted on by 173

Hi, I am creating my first control, but it gave me the below error, I attached the code in the init event, please advise.

 

public init(context: ComponentFramework.Context<IInputs>, notifyOutputChanged: () => void, state: ComponentFramework.Dictionary, container:HTMLDivElement)
	{
		this.localNotifyOutputChanged = notifyOutputChanged;

		//Configure buttons
		this.nextButtonElement = document.createElement("a");
		this.nextButtonElement.setAttribute("class","next");
		this.nextButtonElement.addEventListener("click",this.nextOnClick.bind(this));

	 	this.nextButtonElement = document.createElement("a");
		this.nextButtonElement.setAttribute("class","previous");
		this.nextButtonElement.addEventListener("click",this.previousOnClick.bind(this));

		this.spaceElement = document.createElement("span"); 

		var _previous = container.appendChild(this.previousButtonElement);
		var _space = container.appendChild(this.spaceElement);
		var _next = container.appendChild(this.nextButtonElement);
		_previous.innerHTML = "&laquo; Previous";
		_space.innerHTML = "&nbsp;";
		_next.innerHTML = "Next &raquo";
}

 

 

 

WeChat Screenshot_20210418104555.png

  • Verified answer
    Diana Birkelbach Profile Picture
    3,072 Most Valuable Professional on at
    Re: failed to execute on node

    HI @sdnd2000 , 

    You've created two times the this.nextButtonElement, but forgot to create this.previousButtonElement.
    It must be a copy/paste error.

    Kind regrads,

    Diana

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Announcing the Engage with the Community forum!

This forum is your space to connect, share, and grow!

🌸 Community Spring Festival 2025 Challenge Winners! 🌸

Congratulations to all our community participants!

Warren Belz – Community Spotlight

We are honored to recognize Warren Belz as our May 2025 Community…

Leaderboard > Power Apps - Power Apps Pro Dev & ISV

#1
WarrenBelz Profile Picture

WarrenBelz 109 Most Valuable Professional

#2
Michael E. Gernaey Profile Picture

Michael E. Gernaey 82 Super User 2025 Season 1

#3
mmbr1606 Profile Picture

mmbr1606 71 Super User 2025 Season 1

Overall leaderboard