200 Character limitation
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2014 01:42 PM
Hi,
Where and How can I increase the 200 character limitation on a Workflow description?
Thanks
Where and How can I increase the 200 character limitation on a Workflow description?
Thanks
Labels:
- Labels:
-
Archive
3 REPLIES 3
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-15-2014 05:09 AM
Open file
Change maxLength value and restart your server.
{TOMCAT_ROOT}/webapps/alfresco/WEB-INF/classes/alfresco/model/bpmModel.xml
and search with keyword "bpm:allowedDescriptionLength" ,you will find something like following <constraint name="bpm:allowedDescriptionLength" type="LENGTH"> <parameter name="minLength"> <value>0</value> </parameter> <parameter name="maxLength"> <value>250</value> </parameter> </constraint>
Change maxLength value and restart your server.
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-10-2016 03:39 PM
I changed that by registering a new content model, which in fact, is a copy of the ootb file.
Then I copied the bpmModel.xml file to customBpmModel.xml, changing the constraint:
I don't like to change files inside the application.
<bean depends-on="dictionaryBootstrap" id="${project.artifactId}.bpm.dictionaryBootstrap" parent="dictionaryModelBootstrap"> <property name="models"> <list> <value>alfresco/extension/model/customBpmModel.xml</value> </list> </property> </bean>
Then I copied the bpmModel.xml file to customBpmModel.xml, changing the constraint:
<constraint name="bpm:allowedDescriptionLength" type="LENGTH"> <parameter name="minLength"> <value>0</value> </parameter> <parameter name="maxLength"> <value>4096</value> </parameter> </constraint>
I don't like to change files inside the application.
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-05-2015 12:29 PM
Hola. Como lo ubico en:
Alfresco Community 5.0.c, solo llego hasta esta ruta:
Alfresco\tomcat\webapps\alfresco\WEB-INF\classes\alfresco
Luego no aparece lo que sigue
Alfresco Community 5.0.c, solo llego hasta esta ruta:
Alfresco\tomcat\webapps\alfresco\WEB-INF\classes\alfresco
Luego no aparece lo que sigue