Skip to content

Commit

Permalink
add replacing spaces in settings input
Browse files Browse the repository at this point in the history
  • Loading branch information
softwarecrash committed Jun 28, 2024
1 parent 148590a commit 9db1575
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/webpages/HTML_SETTINGS_EDIT.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ <h1>Edit Configuration</h1>
<div class="input-group mb-2">
<span class="input-group-text w-50" id="devicenamedesc">Device Name</span>
<input type="text" class="form-control" aria-describedby="devicenamedesc" id="devicename" name="post_deviceName"
maxlength="35" value="%pre_device_name%">
maxlength="35" value="%pre_device_name%" onkeyup="this.value=this.value.replace(/\s+/g,'_');">
</div>
<div class="input-group mb-2">
<span class="input-group-text w-50" id="devicequantitydesc">Device Quantity</span>
Expand Down Expand Up @@ -36,7 +36,7 @@ <h1>Edit Configuration</h1>
<div class="input-group mb-2">
<span class="input-group-text w-50" id="mqtttopicdesc">MQTT Topic</span>
<input type="text" class="form-control" aria-describedby="mqtttopicdesc" id="mqtttopic" name="post_mqttTopic"
maxlength="35" value="%pre_mqtt_topic%">
maxlength="35" value="%pre_mqtt_topic%" onkeyup="this.value=this.value.replace(/\s+/g,'_');">
</div>
<div class="input-group mb-2">
<span class="input-group-text w-50" id="mqttrefreshdesc">MQTT Refresh (sec)</span>
Expand All @@ -46,7 +46,7 @@ <h1>Edit Configuration</h1>
<div class="input-group mb-2">
<span class="input-group-text w-50" id="mqtttriggerdesc">MQTT Data Trigger Path</span>
<input type="text" class="form-control" aria-describedby="mqtttrigerdesc" id="mqtttrigger" maxlength="80"
name="post_mqtttrigger" value="%pre_mqtt_mqtttrigger%">
name="post_mqtttrigger" value="%pre_mqtt_mqtttrigger%" onkeyup="this.value=this.value.replace(/\s+/g,'_');">
</div>
<div class="input-group mb-2">
<span class="input-group-text w-50" id="mqttjsondesc">MQTT Json Style</span>
Expand Down

1 comment on commit 9db1575

@softwarecrash
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hallo Softwarecrash, sorry dass ich dich hier so anschreibe, aber ich weiß sonst keine andere Möglichkeit dich zu erreichen. Erstmal super Projekt, dass du da online gestellt hast. So etwas würde ich für meinen PowMr MPPT auch suchen. Dieser hat eine RS485 Schnittstelle und ich denke von der Hardware wäre das 1:1 das selbe. Programmieren kann ich leider nicht, daher wollte ich fragen ob du sowas auch für den PowMr MPPT hinbekommen würdest? Wäre super, wenn du dich meldest, an Hardware hätte ich alles zum Testen hier. Habe auch versuchsweise dieses Projekt 1:1 so probiert aber leider bekomme ich keine Daten ausgegeben.

vielen Dank vorab!!!

es gibt genügend kontaktmöglichkeiten!
Discord, Discusionen, issues... Hier hat das absulut nichts zu suchen!

Please sign in to comment.