Hey, thanks for all the possible help I might be getting here. I am currently expanding a existing node-red-contrib package and for that I would need the following setup:
- Some "normal" nodes (no problem here)
- A configuration node that contains a few parameters and another configuration node (a server configuration that I'd like to reuse)
However, when I build the node (I watched out for all the typical pitfalls like the naming of the configuration nodes and referencing them properly, I find that in the "main" (first) configuration node, the second configuration node <select>
is just shown as a text input with no way to select the relevant nodes. I also took a look at the node-red-dashboard source code which uses this kind of setup, but there it seems to "just" work. Is there anything I need to watch out for when referencing one configuration node within another configuration node ? Does somebody have a simple working example of this ?
Addition: I also tried using existing code that works when I add it to a "normal node". There the select-element is properly populated with all of the existing configuration nodes, but when I use the same code (more or less, just adpted it so that it works in a config node), it shows the string input again.