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

danielb’s picture

Status: Active » Closed (won't fix)

I 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.

preper’s picture

which codes do I have to change can you help me about this issue daniel?

danielb’s picture

Find the bit in the code which is along the lines of LIKE '%%%s%%' and change it to something more like this: LIKE '%s%%'