Hi all,
I wrote a function that I know is working because it get’s loaded by the onLoad event. Any ideas on how I get the same function to be triggered when I toggle between my records?
Thanks,
Hi all,
I wrote a function that I know is working because it get’s loaded by the onLoad event. Any ideas on how I get the same function to be triggered when I toggle between my records?
Thanks,
attach it to the onRecordSelection event of the form?
Hi Patrick,
Yeah that’s what I did, but it didn’t work until I called the function in the script editor… When I put the function in the form and wrote the piece of code:
function onRecordSelection(event) {
myfunction();
}
it worked. Seems very strange…