Jump to content
  • 0

Task Reminder!


FinTheHuman

Question

1 answer to this question

Recommended Posts

  • 0

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~

Link to comment
Share on other sites

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.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...