Forums
Script to execute a function after the timer expires - Printable Version

+- Forums (https://bdn.bdb.ai)
+-- Forum: BDB Knowledge Base (https://bdn.bdb.ai/forumdisplay.php?fid=13)
+--- Forum: BDB Dashboards Designer (https://bdn.bdb.ai/forumdisplay.php?fid=43)
+---- Forum: BDB Designer Q & A (https://bdn.bdb.ai/forumdisplay.php?fid=16)
+---- Thread: Script to execute a function after the timer expires (/showthread.php?tid=357)



Script to execute a function after the timer expires - shreekantgosavi - 12-21-2022

function mytime() {
    setTimeout(
        function() {
            sdk.reload('C_NT');
        }, 30000);
}
onclick = mytime();

Here this connection will load after 30 sec once the function is called.