Hi,
I got a problem.
Assume the following property group:
First think I thought of, was the DbSearchModule.java:336.
Thanks a lot.
I got a problem.
Assume the following property group:
Code: Select all
I added this property to a document.
Ok. Now I go to Search - Advanced and add this property and than hit "search".
But I got no results.<property-group label="test" name="pc.Test">
<select label="MySelect" name="pc.test.Select" type="simple">
<option label="Option1" value="pc.test.Select.Id1" />
<option label="Option2" value="pc.test.Select.Id2" />
</select>
</property-group>
First think I thought of, was the DbSearchModule.java:336.
Code: Select all
There you convert the property group value to lowercase. But I really need mixed case! So I replaced this line with:
String valueTrimmed = ent.getValue().trim().toLowerCase();
Code: Select all
But I still getting no results, but now the queryString looks good.
String valueTrimmed = ent.getValue().trim(); // Bugfix for case sensitive properties
Code: Select all
Do you have any idea, whats going wrong here? I'm using the latest sources of the community edition shared on sourceforge.(+_hibernate_class:com.openkm.dao.bean.NodeDocument +context:okm_root +pc.test.Select:pc.test.Select.Id1)
Thanks a lot.
