cancel
Showing results for 
Search instead for 
Did you mean: 

Workflow to specific type

khinendra
Champ on-the-rise
Champ on-the-rise
Hi,

I created my own type "Customer Application Form" extends content type. Now based on condition "File with Specific type" I want to create a rule to initiate workflow on that particular type.

When I am selecting this condtion only two types are available in drop down-
1. content
2. space
and my created type "Customer Application Form" is not available there.

How to do this?
Please help.


Thanks
Khinendra
2 REPLIES 2

jayjayecl
Confirmed Champ
Confirmed Champ
Hi,
you have to edit your web-client-config-custom.xml, following this tip (from original Alfresco's web-client-config.xml) :


<config evaluator="string-compare" condition="Action Wizards">
      <!– The list of types shown in the is-subtype condition –>
      <subtypes>
         <type name="folder" display-label-id="space"/>
         <type name="content"/>
      </subtypes>

khinendra
Champ on-the-rise
Champ on-the-rise
Hi,

I added–

<config evaluator="string-compare" condition="Action Wizards"> 

      <!– The list of types shown in the is-subtype condition –>
      <subtypes>
         <type name="sc:doc" />
         <type name="sc:whitepaper" />
         <type name="docx:form" />
      </subtypes>      
<config/>

and it worked


Thanks