root/trunk/calendar3/webclient/war/docs/editLocation.jsp

Revision 297 (checked in by douglm, 7 years ago)

Fixes to personal client.
Use ArrayList? instead of Vector

Line 
1 <%@ taglib uri='struts-bean' prefix='bean' %>
2 <%@ taglib uri='struts-logic' prefix='logic' %>
3 <%@ taglib uri='struts-html' prefix='html' %>
4 <%@ taglib uri='struts-genurl' prefix='genurl' %>
5 <html:xhtml/>
6
7 <%@ include file="header.jsp" %>
8
9 <%
10 try {
11 %>
12
13 <page>editLocation</page>
14 <locationform>
15   <genurl:form action="editLoc">
16     <address><html:text property="editLocation.address"/></address>
17     <subaddress><html:textarea property="editLocation.subaddress" rows="8" cols="55"/></subaddress>
18     <link><html:text property="editLocation.link" /></link>
19     <id><bean:write name="calForm" property="editLocation.id"/></id>
20   </genurl:form>
21 </locationform>
22
23 <%
24 } catch (Throwable t) {
25   t.printStackTrace();
26 }
27 %>
28
29 <%@ include file="footer.jsp" %>
30
Note: See TracBrowser for help on using the browser.