Qt 6.11 is out! See what's new in the release
blog
QCompleter - setCompletionColumn all
General and Desktop
3
Posts
2
Posters
1.2k
Views
1
Watching
-
hi,
the setCompletionColumn allocates the column where the search is performed. I want to set QCompleter to search in all columns of a query, not only in the default one, or the setCompletionColumn? Is it possible?
thank you. -
Hi,
AFAIK, out of the box, no. But you could for example use a proxy model that would transform your table model in a one column model usable by QCompleter
Hope it helps
-
thank you. I will try and return with a reply.