When I add an UI widget, in my case node-red-node-ui-table, everything that existed before on the dashboard dissapears (theme also returns to the default one), even my side bar menu.
Only the widget is shown:
Can you walk me thru the steps you take to add the table widget to your flow and how you configure it? Please be detailed so I can try to recreate your steps.
*If I disable the widget node after being shown on the ui, my ui goes to (see picture below). The only way to go back to my normal ui (picture 1 from above) is to redeploy from cmd
I guess since the problem can't be reproduced maybe it has something to do with my files?
Does it matter from where do I start the server? Is there a difference if I start it from /bianca.cernat or from /bianca.cernat/.node-red-1881?
I have another node-red application that is running on 1880. I use this as a workaround because of the fact that node-red is not multiuser intended.
Also I get the same behavior on port 1880
I assume you mean c:/node-red-1884 or c:\node-red-1884? c:.node-red-1884 is not valid is that a typo?
node-red -p 1884 will be using a different folder (with different node_modules installed) to node-red -p 1884 -u c:/node-red-1884
So this basically means what you have installed in c:.node-red-1884 (wherever that is) has an issue where as the default .node-red folder (probably in c:\users\YOURNAME\.node-red) does not!
If you want to load the flows and installed nodes of .node-red then node-red -p 1884 will use .node-red
If you want to load the flows and installed nodes of .node-red-1884 then node-red -p 1884 -u c:/users/bianca.cernat/.node-red-1884 will use everything inside .node-red-1884!
If you want to run both folders at the same time, use different port numbers...
node-red -p 1880 -u c:/users/bianca.cernat/.node-red
# NOTE: this ↑ is just the same as entering node-red