Author: jleroux
Date: Mon May 12 09:04:23 2014
New Revision: 1593908
URL:
http://svn.apache.org/r1593908Log:
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/trunk/applications/product/widget/catalog/ProductStoreForms.xml
Modified: ofbiz/trunk/applications/product/widget/catalog/ProductStoreForms.xml
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/widget/catalog/ProductStoreForms.xml?rev=1593908&r1=1593907&r2=1593908&view=diff==============================================================================
--- ofbiz/trunk/applications/product/widget/catalog/ProductStoreForms.xml (original)
+++ ofbiz/trunk/applications/product/widget/catalog/ProductStoreForms.xml Mon May 12 09:04:23 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>