svn commit: r498247 - /ofbiz/trunk/applications/product/webapp/catalog/feature/BulkAddFeature.ftl

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

svn commit: r498247 - /ofbiz/trunk/applications/product/webapp/catalog/feature/BulkAddFeature.ftl

jonesde
Author: jonesde
Date: Sat Jan 20 21:48:59 2007
New Revision: 498247

URL: http://svn.apache.org/viewvc?view=rev&rev=498247
Log:
Changed to default to check all row submit boxes, was tempted to remove them since this is just a create screen and they don't really make sense, but now at least they are checked by default so it isn't so confusing

Modified:
    ofbiz/trunk/applications/product/webapp/catalog/feature/BulkAddFeature.ftl

Modified: ofbiz/trunk/applications/product/webapp/catalog/feature/BulkAddFeature.ftl
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/webapp/catalog/feature/BulkAddFeature.ftl?view=diff&rev=498247&r1=498246&r2=498247
==============================================================================
--- ofbiz/trunk/applications/product/webapp/catalog/feature/BulkAddFeature.ftl (original)
+++ ofbiz/trunk/applications/product/webapp/catalog/feature/BulkAddFeature.ftl Sat Jan 20 21:48:59 2007
@@ -27,7 +27,7 @@
     <td><div class="tabletext"><b>${uiLabelMap.ProductFeatureType}</b></div></td>
     <td><div class="tabletext"><b>${uiLabelMap.ProductIdSeqNum}</b></div></td>
     <td><div class="tabletext"><b>${uiLabelMap.ProductIdCode}</b></div></td>
-    <td><div class="tabletext"><b>${uiLabelMap.CommonAll}<input type="checkbox" name="selectAll" value="${uiLabelMap.CommonY}" onclick="javascript:toggleAll(this, 'selectAllForm');"></div></td>
+    <td><div class="tabletext"><b>${uiLabelMap.CommonAll}<input type="checkbox" name="selectAll" value="Y" checked="checked" onclick="javascript:toggleAll(this, 'selectAllForm');"></div></td>
   </tr>
 <#list 0..featureNum-1 as feature>
   <tr valign="middle" class='viewOneTR1'>
@@ -40,7 +40,7 @@
       <input name='productFeatureCategoryId_o_${feature_index}' type="hidden" value="${productFeatureCategoryId}">
       <td><input type="text" class='inputBox' size='5' name="defaultSequenceNum_o_${feature_index}""></td>
       <td><input type="text" class='inputBox' size='5' name="idCode_o_${feature_index}"></td>
-      <td align="right"><input type="checkbox" name="_rowSubmit_o_${feature_index}" value="Y" onclick="javascript:checkToggle(this, 'selectAllForm');"></td>
+      <td align="right"><input type="checkbox" name="_rowSubmit_o_${feature_index}" value="Y" checked="checked" onclick="javascript:checkToggle(this, 'selectAllForm');"></td>
   </tr>
 
 </#list>