Hi,
I have a simple flow with 2 buttons. First button is general menu and button2 is a submenu. When click button1, it goes hidden and button2 came visible and viceversa. My issue is that when I load the page first time, both of them are visible.
I tried with an inject node but without success.
How can I set button2 to be hidden when load the page ?
Here is a test flow
[{"id":"8b1d019cc641df04","type":"tab","label":"test","disabled":false,"info":"","env":[]},{"id":"c4f6ad9be5ac8d9a","type":"ui_button","z":"8b1d019cc641df04","name":"","group":"b85d66818842709a","order":0,"width":0,"height":0,"passthru":false,"label":"menu","tooltip":"","color":"","bgcolor":"","className":"","icon":"","payload":"{\"group\":{\"hide\":[\"test_menu\"],\"show\":[\"test_menu2\"]}}","payloadType":"json","topic":"topic","topicType":"msg","x":390,"y":240,"wires":[["699208322b159740"]]},{"id":"06667493c438a667","type":"ui_button","z":"8b1d019cc641df04","name":"","group":"f57982547f0f5298","order":0,"width":0,"height":0,"passthru":false,"label":"menu2","tooltip":"","color":"","bgcolor":"","className":"","icon":"","payload":"{\"group\":{\"hide\":[\"test_menu2\"],\"show\":[\"test_menu\"]}}","payloadType":"json","topic":"topic","topicType":"msg","x":390,"y":400,"wires":[["699208322b159740"]]},{"id":"699208322b159740","type":"ui_ui_control","z":"8b1d019cc641df04","name":"","events":"all","x":740,"y":240,"wires":[[]]},{"id":"74e7001d6ddb6fa8","type":"inject","z":"8b1d019cc641df04","name":"","props":[{"p":"payload"}],"repeat":"","crontab":"","once":true,"onceDelay":0.1,"topic":"","payload":"{\"group\":{\"hide\":[\"test_menu2\"],\"show\":[\"test_menu\"]}}","payloadType":"json","x":410,"y":520,"wires":[[]]},{"id":"b85d66818842709a","type":"ui_group","name":"menu","tab":"936d7e2f71ad862c","order":1,"disp":true,"width":"6","collapse":false,"className":""},{"id":"f57982547f0f5298","type":"ui_group","name":"menu2","tab":"936d7e2f71ad862c","order":2,"disp":true,"width":"6","collapse":false,"className":""},{"id":"936d7e2f71ad862c","type":"ui_tab","name":"test","icon":"dashboard","order":9,"disabled":false,"hidden":false}]
Here is how it appear when first open the page
Thank you