In my project file I have dropdown field and that field I have many options its working but every time I scroll it and get that option, I want once click the dropdown field, I type ‘v’ or some think alphabet that select option move that option, this problem found in phpmaker 2023.
If I’m not mistaken about your needs, you want each time end-user is typing one or some characters in Dropdwon control, then system will automatically search and go to the nearest option that found, right?If so, then you may simply enable Requires search option under Fields setup → Edit Tag pane → SELECT Tag section.
After that, put this following code also under Client Scripts → Global → Pages with header/footer → Client Script:
ew.selectMinimumInputLength = 0; // Minimum number of characters required to start a search
ew.selectOptions.minimumResultsForSearch = 0; // Minimum number of results required to display the search box
Enable below setting.
Tools → Advanced Settings → Use native SELECT tag for select-one fields.