Author: jleroux
Date: Tue Apr 21 12:27:35 2009
New Revision: 767123

URL: http://svn.apache.org/viewvc?rev=767123&view=rev
Log:
We were still missing something in this secured URLs : the calendar was not 
working. I quickly understood the issue but I had to struggle with this because 
Firebug made a mess in Firefox. I had to turn to Chrome to understand why 
Firefox was not finding the calendar after my change. It worked in Chrome, 
phew! Beware of Firebug, sometimes (not the 1st for me) it hurts more than it 
helps :(
I will see if we have other cases like this one...

Modified:
    
ofbiz/trunk/applications/product/webapp/catalog/category/EditCategoryParties.ftl
    
ofbiz/trunk/applications/product/webapp/catalog/category/EditCategoryProdCatalogs.ftl

Modified: 
ofbiz/trunk/applications/product/webapp/catalog/category/EditCategoryParties.ftl
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/webapp/catalog/category/EditCategoryParties.ftl?rev=767123&r1=767122&r2=767123&view=diff
==============================================================================
--- 
ofbiz/trunk/applications/product/webapp/catalog/category/EditCategoryParties.ftl
 (original)
+++ 
ofbiz/trunk/applications/product/webapp/catalog/category/EditCategoryParties.ftl
 Tue Apr 21 12:27:35 2009
@@ -51,7 +51,7 @@
                     <input type="hidden" name="roleTypeId" 
value="${(productCategoryRole.roleTypeId)?if_exists}">
                     <input type="hidden" name="fromDate" 
value="${(productCategoryRole.getTimestamp("fromDate"))?if_exists}">
                     <input type="text" size="25" name="thruDate" 
value="${(productCategoryRole. getTimestamp("thruDate"))?if_exists}" <#if 
hasExpired> style="color: red;"</#if>>
-                    <a 
href="javascript:call_cal(document.lineForm${line}.thruDate, 
'${(productCategoryRole.getTimestamp("thruDate"))?default(nowTimestamp?string)}');"><img
 src="<@ofbizContentUrl>/images/cal.gif</@ofbizContentUrl>" width="16" 
height="16" border="0" alt="Calendar"></a>
+                    <a 
href="javascript:call_cal(document.lineForm_update${line}.thruDate, 
'${(productCategoryRole.getTimestamp("thruDate"))?default(nowTimestamp?string)}');"><img
 src="<@ofbizContentUrl>/images/cal.gif</@ofbizContentUrl>" width="16" 
height="16" border="0" alt="Calendar"></a>
                     <INPUT type="submit" value="${uiLabelMap.CommonUpdate}" 
style="font-size: x-small;">
                 </FORM>
             </td>

Modified: 
ofbiz/trunk/applications/product/webapp/catalog/category/EditCategoryProdCatalogs.ftl
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/webapp/catalog/category/EditCategoryProdCatalogs.ftl?rev=767123&r1=767122&r2=767123&view=diff
==============================================================================
--- 
ofbiz/trunk/applications/product/webapp/catalog/category/EditCategoryProdCatalogs.ftl
 (original)
+++ 
ofbiz/trunk/applications/product/webapp/catalog/category/EditCategoryProdCatalogs.ftl
 Tue Apr 21 12:27:35 2009
@@ -54,7 +54,7 @@
                         <input type="hidden" name="prodCatalogCategoryTypeId" 
value="${prodCatalogCategory.prodCatalogCategoryTypeId}"/>
                         <input type="hidden" name="fromDate" 
value="${(prodCatalogCategory.fromDate)?if_exists}"/>
                         <input type="text" size="25" name="thruDate" 
value="${(prodCatalogCategory.thruDate)?if_exists}" style="<#if (hasExpired) 
>color: red;</#if>"/>
-                        <a 
href="javascript:call_cal(document.lineForm${line}.thruDate, 
'${(prodCatalogCategory.thruDate)?default(nowTimestamp?string)}');"><img 
src="<@ofbizContentUrl>/images/cal.gif</@ofbizContentUrl>" width="16" 
height="16" border="0" alt="Calendar"/></a>
+                        <a 
href="javascript:call_cal(document.lineForm_update${line}.thruDate, 
'${(prodCatalogCategory.thruDate)?default(nowTimestamp?string)}');"><img 
src="<@ofbizContentUrl>/images/cal.gif</@ofbizContentUrl>" width="16" 
height="16" border="0" alt="Calendar"/></a>
                         <input type="text" size="5" name="sequenceNum" 
value="${(prodCatalogCategory.sequenceNum)?if_exists}"/>
                         <#-- the prodCatalogCategoryTypeId field is now part 
of the PK, so it can't be changed, must be re-created
                         <select name="prodCatalogCategoryTypeId" size="1">


Reply via email to