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
44
|
<% 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) %>
<%
local id = cfe({type="hidden", value=".extension"})
local comparison = cfe({type="hidden", value="~"})
local value = cfe({label="Extension"})
local form = cfe({type="form", label="Search by Extension", value={id=id, comparison=comparison, value=value}, action="searchdevices", option="Search"})
if session.searchdevicesresult then
local data = session.searchdevicesresult
session.searchdevicesresult = nil
if data.value and data.value.result then
form.value.result = data.value.result
end
end
local func = haserl.loadfile(page_info.viewfile:gsub("searchbyextension", "searchdevices"))
func(form, viewlibrary, page_info, session)
%>
|