Feature suggestion "Send to back"

I like hiding the debug outputs behind the functions, to allow for easy echo of input data without taking up much space:

off on

Issue is that there is no easy way to "send" one item behind another, so I'd need to cut the function, place the debug and paste the function on top.

Would be nice to have a UI option to send an element to the front or back ground like it is common in many layout applications.

Yes, this is on the backlog somewhere.

1 Like

I know it's not quite what you want, but you could use node.status within a function node to show text and/or a variable so you could see what was going on.

    node.status({text:"State register = Stopped"});

Screen Shot 09-27-20 at 12.56 PM

Thanks @dynamicdave, status text is definitely something I use often in my designs, that is how I can see at a glance that the pump was running at 0% and consuming 5W in my original post.

node.status({text:`${speed}% @ ${pwr} watts`});

"Send to back" is mostly useful if you wish to hide a node behind another such as turning this:

b4

into this:
during

but retaining the easy access to the function by moving the debug node into the background:
after

Just putting my 2 cents in the discussion.
I fear that one day the Node-RED Editor will became a heavy and complicated tool to use. I honestly think that a "Send to back" button tend to be a Feature Creep functionality since, in my opinion, that is not really necessary and it will make the flow file bigger and the editor harder to use.
One thing that makes me feel better is that the Editor is a package that is completely separated from the Engine, so maybe we will have 2 (or more) versions of the Editor in the future....who knows the future huh?! :smiley:

2 Likes

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.