mirror of
https://github.com/Ylianst/MeshCentral.git
synced 2025-02-05 02:38:05 -05:00
Improved online only filter
This commit is contained in:
parent
7be30a62cd
commit
ab7d3b77f8
@ -232,7 +232,7 @@
|
|||||||
<input type=button id=GroupActionButton disabled="disabled" value="Group Action" onclick=groupActionFunction() />
|
<input type=button id=GroupActionButton disabled="disabled" value="Group Action" onclick=groupActionFunction() />
|
||||||
<input id=SearchInput type=text placeholder=Filter onchange=onDeviceSearchChanged(event) onkeyup=onDeviceSearchChanged(event) autocomplete=off onfocus=onSearchFocus(1) onblur=onSearchFocus(0) />
|
<input id=SearchInput type=text placeholder=Filter onchange=onDeviceSearchChanged(event) onkeyup=onDeviceSearchChanged(event) autocomplete=off onfocus=onSearchFocus(1) onblur=onSearchFocus(0) />
|
||||||
<label><input type=checkbox id=RealNameCheckBox onclick=onRealNameCheckBox() /><span title="Show devices operating system name">OS Name</span></label>
|
<label><input type=checkbox id=RealNameCheckBox onclick=onRealNameCheckBox() /><span title="Show devices operating system name">OS Name</span></label>
|
||||||
<label><input type=checkbox id=OnlineCheckBox onclick=onDeviceSearchChanged(event) /><span title="Only show devices that are online">Online</span></label>
|
<label><input type=checkbox id=OnlineCheckBox onclick=onOnlineCheckBox(event) /><span title="Only show devices that are online">Online</span></label>
|
||||||
</td>
|
</td>
|
||||||
<td id=kvmListToolbar class=style14 style="display:none">
|
<td id=kvmListToolbar class=style14 style="display:none">
|
||||||
<input type="button" onclick="connectAllKvmFunction()" value="Connect All" />
|
<input type="button" onclick="connectAllKvmFunction()" value="Connect All" />
|
||||||
@ -1330,6 +1330,7 @@
|
|||||||
Q('KvmSearchInput').value = Q('SearchInput').value = getstore('_search', '');
|
Q('KvmSearchInput').value = Q('SearchInput').value = getstore('_search', '');
|
||||||
showRealNames = (getstore('showRealNames', 0) == 1);
|
showRealNames = (getstore('showRealNames', 0) == 1);
|
||||||
Q('RealNameCheckBox').checked = showRealNames;
|
Q('RealNameCheckBox').checked = showRealNames;
|
||||||
|
Q('OnlineCheckBox').checked = (getstore('onlineOnly', 0) == 1);
|
||||||
Q('viewselect').value = getstore('deviceView', 1);
|
Q('viewselect').value = getstore('deviceView', 1);
|
||||||
Q('DeskControl').checked = (getstore('DeskControl', 1) == 1);
|
Q('DeskControl').checked = (getstore('DeskControl', 1) == 1);
|
||||||
QV('accountChangeEmailAddressSpan', (features & 0x200000) == 0);
|
QV('accountChangeEmailAddressSpan', (features & 0x200000) == 0);
|
||||||
@ -2642,7 +2643,7 @@
|
|||||||
node.lastconnect = Date.now();
|
node.lastconnect = Date.now();
|
||||||
|
|
||||||
// Web page update
|
// Web page update
|
||||||
masterUpdate(4 | 16);
|
masterUpdate(1 | 4 | 16);
|
||||||
refreshDevice(node._id);
|
refreshDevice(node._id);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
@ -2870,7 +2871,11 @@
|
|||||||
showRealNames = Q('RealNameCheckBox').checked;
|
showRealNames = Q('RealNameCheckBox').checked;
|
||||||
putstore('showRealNames', showRealNames ? 1 : 0);
|
putstore('showRealNames', showRealNames ? 1 : 0);
|
||||||
masterUpdate(6);
|
masterUpdate(6);
|
||||||
return;
|
}
|
||||||
|
|
||||||
|
function onOnlineCheckBox(e) {
|
||||||
|
putstore('onlineOnly', Q('OnlineCheckBox').checked ? 1 : 0);
|
||||||
|
onDeviceSearchChanged(e);
|
||||||
}
|
}
|
||||||
|
|
||||||
function onDeviceViewChange(i) {
|
function onDeviceViewChange(i) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user