# Edit node config from Dashboard

**URL:** https://discourse.nodered.org/t/edit-node-config-from-dashboard/20495
**Category:** General
**Created:** [17 January 2020 10:50 UTC](https://discourse.nodered.org/t/edit-node-config-from-dashboard/20495 "2020-01-17T10:50:58Z")
**Posts on this page:** 7
**Page:** 1

<div class="post-metadata">

### Author: ![mtoko](https://sea2.discourse-cdn.com/flex026/user_avatar/discourse.nodered.org/mtoko/32/138_2.png) [@mtoko](https://discourse.nodered.org/u/mtoko)
#### Post date: [17 January 2020 10:50 UTC](https://discourse.nodered.org/t/edit-node-config-from-dashboard/20495/1 "2020-01-17T10:50:58Z")

</div>

Hi

I am working on the possibility to change the time settings on the BigTimer node from the Dashboard. This would mean changing the values in the config of the node.  
I have seen this example in the flows library  
[https://flows.nodered.org/flow/6fe183c197b3464a1fe4d89744e068ff](https://flows.nodered.org/flow/6fe183c197b3464a1fe4d89744e068ff)

and this appears to be most of what is needed, but this is very old and now the issue is that the editor produces a pop up (Merge, Ignore, Changed etc), I suspect this is related to newer versions of Node Red.  
This seems to be based on the Admin API and I have looked at that and cannot see why this should not work.  
This would be useful for many other applications eg. to set the connection settings for an MQTT node.

Any help, advice appreciated

---

<div class="post-metadata">

### Author: ![knolleary](https://sea2.discourse-cdn.com/flex026/user_avatar/discourse.nodered.org/knolleary/32/3_2.png) [@knolleary](https://discourse.nodered.org/u/knolleary)
#### Post date: [17 January 2020 10:53 UTC](https://discourse.nodered.org/t/edit-node-config-from-dashboard/20495/2 "2020-01-17T10:53:49Z")

</div>

@mtoko if anything deploys changes to the runtime whilst you have the editor open, it will tell you and ask what to do. That's just how it works today and there's no way to stop it doing that.

---

<div class="post-metadata">

### Author: ![mtoko](https://sea2.discourse-cdn.com/flex026/user_avatar/discourse.nodered.org/mtoko/32/138_2.png) [@mtoko](https://discourse.nodered.org/u/mtoko)
#### Post date: [17 January 2020 11:00 UTC](https://discourse.nodered.org/t/edit-node-config-from-dashboard/20495/3 "2020-01-17T11:00:18Z")

</div>

@knolleary  
Thanks Nick  
So if you were able to trigger this flow without the editor being open, from another instance of NR or maybe from an MQTT in then the changes would be saved?

---

<div class="post-metadata">

### Author: ![mtoko](https://sea2.discourse-cdn.com/flex026/user_avatar/discourse.nodered.org/mtoko/32/138_2.png) [@mtoko](https://discourse.nodered.org/u/mtoko)
#### Post date: [17 January 2020 12:12 UTC](https://discourse.nodered.org/t/edit-node-config-from-dashboard/20495/4 "2020-01-17T12:12:50Z")

</div>

Just in case anyone is interested.  
I was able to set up an MQTT in node in the flow with the timer which triggers the changes in the flow using the API. I can now change the timer settings (that are in the config node) particularly the on and off times from an MQTT client or another instance of NR.  
Probably not very elegant but it works

---

<div class="post-metadata">

### Author: ![TotallyInformation](https://sea2.discourse-cdn.com/flex026/user_avatar/discourse.nodered.org/totallyinformation/32/31_2.png) [@TotallyInformation](https://discourse.nodered.org/u/TotallyInformation)
#### Post date: [17 January 2020 17:14 UTC](https://discourse.nodered.org/t/edit-node-config-from-dashboard/20495/5 "2020-01-17T17:14:21Z")

</div>

Are you aware of the cronplus node? That is designed to be driven from input msg's as well as the node's config and will likely be more suited to what you are trying to do that the bigtimer node.

---

<div class="post-metadata">

### Author: ![drmibell](https://sea2.discourse-cdn.com/flex026/user_avatar/discourse.nodered.org/drmibell/32/8424_2.png) [@drmibell](https://discourse.nodered.org/u/drmibell)
#### Post date: [18 January 2020 04:02 UTC](https://discourse.nodered.org/t/edit-node-config-from-dashboard/20495/6 "2020-01-18T04:02:30Z")

</div>

You might also take a look at the [schedex](https://flows.nodered.org/node/node-red-contrib-schedex) node. It is a lot like ( "inspired by") `bigtimer` but is not as "big" and lacks some features. It can, however, be programmed by messages, and I have written a [dashboard interface](https://discourse.nodered.org/t/looking-for-a-gui-to-define-input-for-schedex/8938/16) for it.

---

<div class="post-metadata">

### Author: ![mtoko](https://sea2.discourse-cdn.com/flex026/user_avatar/discourse.nodered.org/mtoko/32/138_2.png) [@mtoko](https://discourse.nodered.org/u/mtoko)
#### Post date: [18 January 2020 08:00 UTC](https://discourse.nodered.org/t/edit-node-config-from-dashboard/20495/7 "2020-01-18T08:00:38Z")

</div>

@TotallyInformation  
@drmibell  
Thanks I appreciate the advice and will look at both of these
