update
This commit is contained in:
@@ -69,6 +69,11 @@
|
||||
<input type="text" class="form-control" id="device_ID" disabled>
|
||||
</div>
|
||||
|
||||
<div class="mb-3">
|
||||
<label for="modem_version" class="form-label">Modem Version</label>
|
||||
<input type="text" class="form-control" id="modem_version" disabled>
|
||||
</div>
|
||||
|
||||
<!-- config_scripts_table -->
|
||||
|
||||
<div class="form-check mb-3">
|
||||
@@ -248,6 +253,10 @@ window.onload = function() {
|
||||
const deviceID = response.deviceID.trim().toUpperCase();
|
||||
const device_ID = document.getElementById("device_ID");
|
||||
device_ID.value = response.deviceID.toUpperCase();
|
||||
//modem_version
|
||||
const modem_version = document.getElementById("modem_version");
|
||||
modem_version.value = response.modem_version;
|
||||
|
||||
//nextPM send 5 channels
|
||||
const checkbox_nmp5channels = document.getElementById("check_NPM_5channels");
|
||||
checkbox_nmp5channels.checked = response.npm_5channel;
|
||||
|
||||
Reference in New Issue
Block a user