cancel
Showing results for 
Search instead for 
Did you mean: 

Search A / B or 'A / B' or A/B in Alfresco 4.2d have issues

ratik_singhal
Star Contributor
Star Contributor
I have a custom model in which I have a property having following constraint :


<constraint name="abc:customList" type="LIST">
       <title>Custom List</title>
         <parameter name="allowedValues">
            <list>
              <value></value>
               <value>ABC</value>
               <value>A / B</value>
               <value>A/B</value>
             </list>
         </parameter>
         <parameter name="caseSensitive"><value>true</value></parameter>
      </constraint>


and I have created various documents having different value of above property.

I have created a custom search form on which there are some drop-down list. when I search A / B, It gives no result but If I searched A/B it works.
Also when I searched "A / B" it also work.

This search functionality was working fine in Alfresco 4.2.c for all cases.

I am not able to identify why this is not working in Alfresco 4.2.d
3 REPLIES 3

mitpatoliya
Star Collaborator
Star Collaborator
I think you have posted some xml tags in your content. you need to enclose them in "code" tag to show them properly in post. post the content model settings for that properties tockenization.

I have updated my post for the xml code.

douglascrp
World-Class Innovator
World-Class Innovator
Try to use these tags on your custom property


<property name="your:property">
    <type>d:date</type>
    <index enabled="true">
        <tokenised>false</tokenised>
    </index>
</property>