libs/web: add placeholder support to DynamicList widgets
authorJo-Philipp Wich <jow@openwrt.org>
Sat, 30 Oct 2010 17:21:27 +0000 (17:21 +0000)
committerJo-Philipp Wich <jow@openwrt.org>
Sat, 30 Oct 2010 17:21:27 +0000 (17:21 +0000)
libs/web/luasrc/view/cbi/dynlist.htm

index 9ca7534..387299d 100644 (file)
@@ -19,7 +19,10 @@ $Id$
        for i=1, #vals + 1 do
                local val = vals[i]
 %>
-       <input class="cbi-input-text" value="<%=pcdata(val)%>" onchange="cbi_d_update(this.id)" type="text"<%= attr("id", cbid .. "." .. i) .. attr("name", cbid) .. ifattr(self.size, "size")%> /><br />
+       <input class="cbi-input-text" value="<%=pcdata(val)%>" onchange="cbi_d_update(this.id)" type="text"<%=
+               attr("id", cbid .. "." .. i) .. attr("name", cbid) .. ifattr(self.size, "size") ..
+               ifattr(i == 1 and self.placeholder, "placeholder", self.placeholder)
+       %> /><br />
 <% end %>
 </div>
 <script type="text/javascript">