libs/web: add html5 placeholder attribute support to cbi options
[project/luci.git] / libs / web / luasrc / view / cbi / value.htm
1 <%#
2 LuCI - Lua Configuration Interface
3 Copyright 2008 Steven Barth <steven@midlink.org>
4 Copyright 2008-2010 Jo-Philipp Wich <xm@subsignal.org>
5
6 Licensed under the Apache License, Version 2.0 (the "License");
7 you may not use this file except in compliance with the License.
8 You may obtain a copy of the License at
9
10         http://www.apache.org/licenses/LICENSE-2.0
11
12 $Id$
13
14 -%>
15 <%+cbi/valueheader%>
16         <input type="<%=self.password and 'password" class="cbi-input-password' or 'text" class="cbi-input-text' %>" onchange="cbi_d_update(this.id)"<%=
17                 attr("name", cbid) .. attr("id", cbid) .. attr("value", self:cfgvalue(section) or self.default) ..
18                 ifattr(self.size, "size") .. ifattr(self.placeholder, "placeholder")
19         %> />
20         <% if self.password then %><img src="<%=resource%>/cbi/reload.gif" style="vertical-align:middle" title="<%:Reveal/hide password%>" onclick="var e = document.getElementById('<%=cbid%>'); e.type = (e.type=='password') ? 'text' : 'password';" /><% end %>
21         <% if #self.keylist > 0 or self.datatype then -%>
22         <script type="text/javascript">
23                 <% if #self.keylist > 0 then -%>
24                 cbi_combobox_init('<%=cbid%>', {
25                 <%-
26                         for i, k in ipairs(self.keylist) do
27                 -%>
28                         <%-=string.format("%q", k) .. ":" .. string.format("%q", self.vallist[i])-%>
29                         <%-if i<#self.keylist then-%>,<%-end-%>
30                 <%-
31                         end
32                 -%>
33                 }, '<%- if not self.rmempty and not self.optional then -%>
34                         <%-: -- Please choose -- -%>
35                 <%- end -%>', '
36                 <%- if self.combobox_manual then -%>
37                         <%-=self.combobox_manual-%>
38                 <%- else -%>
39                         <%-: -- custom -- -%>
40                 <%- end -%>');
41                 <%- end %>
42                 <% if self.datatype then -%>
43                 cbi_validate_field('<%=cbid%>', <%=tostring(self.optional == true)%>, '<%=self.datatype%>');
44                 <%- end %>
45         </script>
46         <% end -%>
47 <%+cbi/valuefooter%>