Closed (won't fix)
Project:
Autocomplete Node Finder
Version:
6.x-2.16
Component:
User interface
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
20 Jan 2009 at 08:24 UTC
Updated:
21 Jan 2009 at 01:13 UTC
A.N.F sorts all options alphabetically that is good. but for example when I write letter 'k' it sorts the nodes which includes 'k' and starts with 'a'. I want to sort them by first letter. If I write 'k' suggestion nodes should start with 'k' not includes 'k' but start with 'a'.
How can I do that?
Comments
Comment #1
danielb commentedI don't think you can do this at this point without changing the code in the module. This is the way Node quick find works by the way, maybe that would be suitable for you.
Comment #2
preper commentedwhich codes do I have to change can you help me about this issue daniel?
Comment #3
danielb commentedFind the bit in the code which is along the lines of
LIKE '%%%s%%'and change it to something more like this:LIKE '%s%%'