Jump to content
  • 0

Tabular: Track Number Of Users


CaptNemo

Question

2 answers to this question

Recommended Posts

  • 0

You may create a table which would have the fields Autonumber and Date/Time Field.
Then create a submission form and use the newly created table as data source.
In the Configure Field, in the header place this code
 

<div align="center" id="processing"> <p>Processing...</p> <img src="images/progress_bar.gif" alt="Progress Bar" width="200" height="15" /> </div>

Then for the Date/Time Field change the form element to timestamp.
Add a new HTML block after the Date/Time Field and add this code
 

<script type="text/javascript"> 
document.addEventListener('DataPageReady', function (event) {
           const error = document.querySelector('div[data-cb-name="HeaderErrorMsg"]');
           if(!error){
                if(document.getElementById("caspioform")) {
                document.getElementById("caspioform").style.display = 'none';
                setTimeout('document.forms["caspioform"].submit()',1000); } 
           }    
});
</script>

Lastly in the Destination and Messaging Tab, Select Go to a DataPage and select the DataPage Name of your Tabular Report
image.png.d3adccd85ee6372349cd04d1a885bd44.png

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...