[open-ils-commits] r10658 - trunk/Open-ILS/xul/staff_client/server/patron

svn at svn.open-ils.org svn at svn.open-ils.org
Sat Sep 20 21:23:48 EDT 2008


Author: phasefx
Date: 2008-09-20 21:23:47 -0400 (Sat, 20 Sep 2008)
New Revision: 10658

Modified:
   trunk/Open-ILS/xul/staff_client/server/patron/user_edit.xhtml
Log:
findNodesByName was not liking these <tr>'s outside of <table>'s

Modified: trunk/Open-ILS/xul/staff_client/server/patron/user_edit.xhtml
===================================================================
--- trunk/Open-ILS/xul/staff_client/server/patron/user_edit.xhtml	2008-09-21 00:27:11 UTC (rev 10657)
+++ trunk/Open-ILS/xul/staff_client/server/patron/user_edit.xhtml	2008-09-21 01:23:47 UTC (rev 10658)
@@ -121,33 +121,37 @@
 
 
 		<div class='hideme' id="permission-tmpl">
-			<tr name='prow'>
-				<td class="value" name='plabel'>
-					<span name="p.code"/>
-				</td>
-				<td class="value" name='papply'>
-					<input type="checkbox" name="p.id" onclick="set_perm(this.parentNode.parentNode);"/>
-				</td>
-				<td class="value" name='pdepth'>
-					<select onchange="set_perm(this.parentNode.parentNode);" name="p.depth"/>
-				</td>
-				<td class="value" name='pgrant'>
-					<input type="checkbox" name="p.grantable" onclick="set_perm(this.parentNode.parentNode);"/>
-				</td>
-			</tr>
+			<table>
+				<tr name='prow'>
+					<td class="value" name='plabel'>
+						<span name="p.code"/>
+					</td>
+					<td class="value" name='papply'>
+						<input type="checkbox" name="p.id" onclick="set_perm(this.parentNode.parentNode);"/>
+					</td>
+					<td class="value" name='pdepth'>
+						<select onchange="set_perm(this.parentNode.parentNode);" name="p.depth"/>
+					</td>
+					<td class="value" name='pgrant'>
+						<input type="checkbox" name="p.grantable" onclick="set_perm(this.parentNode.parentNode);"/>
+					</td>
+				</tr>
+			</table>
 		</div>
 
 
 		<div class='hideme' id="work_ou-tmpl">
-			<tr name='wrow'>
-				<td class="value" name='wapply'>
-					<input type="checkbox" name="a.id" onclick="set_work_ou(this.parentNode.parentNode);"/>
-				</td>
-				<td class="value" name='label'>
-					<span name="a.name"/>
-					(<span name="a.shortname"/>)
-				</td>
-			</tr>
+			<table>
+				<tr name='wrow'>
+					<td class="value" name='wapply'>
+						<input type="checkbox" name="a.id" onclick="set_work_ou(this.parentNode.parentNode);"/>
+					</td>
+					<td class="value" name='label'>
+						<span name="a.name"/>
+						(<span name="a.shortname"/>)
+					</td>
+				</tr>
+			</table>
 		</div>
 
 	</body>



More information about the open-ils-commits mailing list