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