svn commit: r1593910 - in /ofbiz/branches/release12.04: ./ applications/product/widget/catalog/ProductStoreForms.xml

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

svn commit: r1593910 - in /ofbiz/branches/release12.04: ./ applications/product/widget/catalog/ProductStoreForms.xml

jleroux@apache.org
Author: jleroux
Date: Mon May 12 09:06:07 2014
New Revision: 1593910

URL: http://svn.apache.org/r1593910
Log:
"Applied fix from trunk for revision: 1593908"
------------------------------------------------------------------------
r1593908 | jleroux | 2014-05-12 11:04:23 +0200 (lun. 12 mai 2014) | 5 lignes

Fixes https://issues.apache.org/jira/browse/OFBIZ-5635 "Store title to be 100 characters"

Maxlength via HTML attribute maxlength for Product Store.title is configured as 60. ProductStore.title can store up to 100 characters in the database

jleroux: true also for the store name, both are of SQL type name which is 100 VARCHAR
------------------------------------------------------------------------


Modified:
    ofbiz/branches/release12.04/   (props changed)
    ofbiz/branches/release12.04/applications/product/widget/catalog/ProductStoreForms.xml

Propchange: ofbiz/branches/release12.04/
------------------------------------------------------------------------------
  Merged /ofbiz/trunk:r1593908

Modified: ofbiz/branches/release12.04/applications/product/widget/catalog/ProductStoreForms.xml
URL: http://svn.apache.org/viewvc/ofbiz/branches/release12.04/applications/product/widget/catalog/ProductStoreForms.xml?rev=1593910&r1=1593909&r2=1593910&view=diff
==============================================================================
--- ofbiz/branches/release12.04/applications/product/widget/catalog/ProductStoreForms.xml (original)
+++ ofbiz/branches/release12.04/applications/product/widget/catalog/ProductStoreForms.xml Mon May 12 09:06:07 2014
@@ -53,8 +53,8 @@
                 </entity-options>
             </drop-down>
         </field>
-        <field name="storeName" title="${uiLabelMap.ProductStoreName}" tooltip="${uiLabelMap.CommonRequired}" widget-style="required"><text size="30" maxlength="60"/></field>
-        <field name="title" title="${uiLabelMap.ProductTitle}"><text size="30" maxlength="60"/></field>
+        <field name="storeName" title="${uiLabelMap.ProductStoreName}" tooltip="${uiLabelMap.CommonRequired}" widget-style="required"><text size="30" maxlength="100"/></field>
+        <field name="title" title="${uiLabelMap.ProductTitle}"><text size="30" maxlength="100"/></field>
         <field name="subtitle" title="${uiLabelMap.ProductSubTitle}"><text size="60" maxlength="250"/></field>
         <field name="payToPartyId"><lookup target-form-name="LookupPartyName"/></field>