bondicoffee Hi, I am in process of adding a button[operation] on a query to execute a process. Is there any way I can disable the button for a few seconds per record and enable the button once the process is completed? Thanks!
hpl123 Yes, can be done with some basic JS using setTimeout methods: https://www.w3schools.com/jsreF/met_win_settimeout.asp . You basically have a special class added to the button and then when the form or VP or whatever it is that contains the button loads, a JS function loads which after x amounts of seconds changes class or changes styles in the class. You can also do a bit more complex JS where the JS function waits for some other action but is again a bit more complex. I have done various things like this (both simple and complex scenario) in the past and works.