FinTheHuman Posted January 10, 2019 Report Share Posted January 10, 2019 Hello Guys, How can I create a reminder for my employee's about there daily task? Let's say it will occurred every 30 minutes once they are login to my website. Thank you for the help. Quote Link to comment Share on other sites More sharing options...
0 Aether Posted January 10, 2019 Report Share Posted January 10, 2019 Hello @FinTheHuman, If you are referring, that the user has logged-in to your Website/DataPage and you want to set a reminder in a specific minute then you will need a simple script for that. Try using this code: <script> document.addEventListener('DataPageReady', function() { if ("[@authfield:tbl_User_Type]" == "Employee") { setInterval(function() { alert('You are currently logged-in as an Employee, please checked your Daily Task !!'); }, (30*60)*1000); } }); </script> You can also change the number of minute in this line of code: "(30*60)*1000" (the one that is highlighted). Note: Please add this code inside the Footer of your authenticated DataPage and make sure that you unchecked the "enable HTML editor" in the advance option. I hope this helps! ~WatashiwaJin~ Quote Link to comment Share on other sites More sharing options...
Question
FinTheHuman
Hello Guys,
How can I create a reminder for my employee's about there daily task?
Let's say it will occurred every 30 minutes once they are login to my website.
Thank you for the help.
Link to comment
Share on other sites
1 answer to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.