cancel
Showing results for 
Search instead for 
Did you mean: 

Custom isSubType condition

jjhinojosa
Champ in-the-making
Champ in-the-making
Hi,

I want to create a rule that only affects one type of documents. But when select "set condition valued" only show content and space, but I want to choose one of my custom models. How to show my custom models in this list????
2 REPLIES 2

dhalupa
Champ on-the-rise
Champ on-the-rise
Cutomize this part of 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>
      <!– The list of content and/or folder types shown in the specialise-type action –>
      <specialise-types>
      </specialise-types>

Kind regards,

Denis

jjhinojosa
Champ in-the-making
Champ in-the-making
Thanks!