Hi,
I use TcxLookupComboBox with option: IncrementalFilteringOptions = [ifoUseContainsOperator]
My dataset contain words in any case. First word in uppercase. In example I use:
WINDOW
Winter
Winner
When press "i", I view all words. Then I press "n" and selection set to "WI", it's not correctly search and selection.
Can you help me with this problem.
Thanks for any help.
Hello,
I tried to replicate the issue with the latest version of our controls (v20.1.4), but failed:
When I press "i", I see only 3 of 4 Items in the dropdown window ("WINDOW", "Winter" and "Winner");
Then I press the "n" key and see that "IN" characters are selected in the editor and the "WINDOWS" Item is selected in the dropdown window.
I've attached a video that demonstrates my actions and the behavior I see. Please take a look at it and try to replicate the issue on your side with v20.1.4.
We will wait for your response with results.
dxVideo
Hello,
I install new version DevExpress VCL 20.1.4 on my computer, problem is solved.
Because I use 19.1.2 version, I find solution for my problem - in cxTextEdit.pas in
function TcxCustomTextEdit.PopulateFromList(var AFindText: string): Boolean;
I replace string
SelStart := Pos(AFindSubstr, AFindText) - 1;
to
SelStart := Pos(AnsiUpperCase(AFindSubstr), AnsiUpperCase(AFindText)) - 1;
In version 20.1.4 you use UpperCase, but this function is not correctly worked for russian charset.
Thanks for help.