summaryrefslogtreecommitdiffstats
path: root/provisioning-searchbymac-html.lsp
blob: c0c6dc4531fc1349c9a4a7319cde1ccac364063c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<% local form, viewlibrary, page_info, session = ... 
htmlviewfunctions = require("htmlviewfunctions")
html = require("acf.html")
%>

<script type="text/javascript">
	if (typeof jQuery == 'undefined') {
		document.write('<script type="text/javascript" src="<%= html.html_escape(page_info.wwwprefix) %>/js/jquery-latest.js"><\/script>');
	}
</script>

<script type="text/javascript">
	$(function(){
		$("input[name='value']").focus();
		$('input').keydown(function(e){
			if (e.keyCode == 13) {
				$(this).parents('form').find('input.submit').click();
				return false;
			}
		});
	});
</script>

<% htmlviewfunctions.displaycommandresults({"deletedevice", "editdevice", "editdeviceparams", "overridedeviceparams"}, session) %>

<%
if session.searchdevicesresult then
	local data = session.searchdevicesresult
	session.searchdevicesresult = nil

	if data.value and data.value.result then
		local func = haserl.loadfile(page_info.viewfile:gsub("searchbymac", "listdevices"))
		func(data.value.result, viewlibrary, page_info, session)
	end
end
%>

<%
local id = cfe({type="hidden", value="device.mac"})
local comparison = cfe({type="hidden", value="~"})
local value = cfe({label="MAC Address"})
htmlviewfunctions.displayitem(cfe({type="form", label="Search by MAC Address", value={id=id, comparison=comparison, value=value}, action="searchdevices", option="Search"}), page_info)
%>