May 1, 20214 yr New user I have a "Search" script setup in one of my layouts, which works well but I'd like to refine it a little to make searching quicker and with less mouse clicks. Currently, I have a field into which I enter a client name, and a "Search" button which activates a search throughout my database for any records containing this name. For the search to work I have to input the name (or a portion of it) into the "Search Name" field , and then click on the "Search" button. What I'd like to happen is to enter the name into the field and then hit the enter key to activate the same search. Is this possible? Thanks in advance.
May 1, 20214 yr You want a script trigger: https://help.claris.com/en/pro-help/content/script-triggers-objects.html
May 1, 20214 yr Author Hi comment, thanks but I have no idea how to implement one of these script triggers and the Claris explanation is quite confusing. From some of the online info I've been reading, sounds like I need to firstly "capture" the enter key inside a script, and then assign a script trigger to my "Search all records" script? I tried a few times, but I just keep getting the same message: "Before typing, press Tab or click in a field or choose the New Record menu command" I've attached the script I found, which is assigned to the "Search" button. Thanks for any further help. Edited May 1, 20214 yr by St3v1e
May 2, 20214 yr 6 hours ago, St3v1e said: sounds like I need to firstly "capture" the enter key That is not necessary. The Enter key* exits the field - so you can use any one of the following script triggers: OnObjectExit OnObjectSave OnObjectValidate 6 hours ago, St3v1e said: and then assign a script trigger to my "Search all records" script? You assign the script trigger to the field (or more precisely - to the field instance on the layout), not to the script. -- (*) Note the difference between the Enter and the Return keys. If you want the Return key to trigger the script as well, you must assign it to go to next object (in the Data section of the Inspector). Or indeed move to the OnObjectKeystroke trigger - which would be overkill in this case, IMHO. Edited May 2, 20214 yr by comment
May 3, 20214 yr Author Many thanks Comment - just assigned the script trigger "onObjectExit" . . . and tried it using the "Enter" key (was using the "Return previously), and it worked first time! So now I'll follow your instructions to see if I can make it work using the "more commonly used) "Return" key. . . . and that also worked! Problem Solved! Many thanks as always Comment. Edited May 3, 20214 yr by St3v1e
Create an account or sign in to comment