I have not seen any reply to my post so probably I have not been able to explain myself correctly.
I try to be more precise here and describe the procedure to reproduce this bug:
In a grid advanced-search application, if there is a field of type text-autocomplete and a field of type integer, then text-autocomplete does not work.
But, if the integer field is removed from the search form, then text-autocomplete works perfectly.
Steps to reproduces this bug ((I have tested two databases: sqlite and IBM DB2. Bug is present against both databases)
- create table
[FONT=courier new]CREATE TABLE NAMES
(
ID INTEGER NOT NULL,
NAME CHAR(20)
)
- Populate table NAMES with three records, like these;
1 - harry
2 - sally
3 - robert
-
Download the project from [/FONT]https://drive.google.com/file/d/0Bxm4M6HfCRxjUmRIWEE4eFI3d1k/view?usp=sharing
and create it over table NAMES
-
In grid, go to advanced search and try to search for harry, typing har in the name field.
Autocomplete does not work here !!
-
Remove from the search application the field ID, and recreate the application
-
In grid, go to advanced search mode and try to search again for harry, typing har in the name field.
[I][B]Autocomplete works here !!
[/B][/I]Can you please confirm you have the same behaviour ?