Details
-
Type:
Bug
-
Status:
Resolved
-
Priority:
Minor
-
Resolution: Fixed
-
Affects Version/s: 1.6.1
-
Fix Version/s: 1.6.4
-
Component/s: Editwizards
Tou can perform a search in the editwzards by specifying searchfields/searchvalue/searchtype parameters on the list.jsp.
If searchtype ='like' (the default), the search is not case-insensitive if the database does not perform so on its own.
The query craeted should follow the syntax as used in other places:
lower(searchfield) LIKE '%searchvalue%'
where 'searchvalue' is converted to lowercase.