Jump to content

Corpcatalog

Caspio Ninja
  • Posts

    32
  • Joined

  • Last visited

  • Days Won

    1

Reputation Activity

  1. Like
    Corpcatalog reacted to Vitalikssssss in Line Chart time series   
    Hi @Corpcatalog,
    You can build such Chart in Caspio but you would need to modify your table first.
    You table should look like the following:

    You can build the following Chart once you transform your table:

    You may import attached Datapage to your account in order to see the settings for the Chart Datapage.
    Hope this helps.
    Regards,
    vitalikssssss
     
     
    CaspioData_2019-Sep-10_1309.zip
  2. Like
    Corpcatalog reacted to SunakoChan in Remind user to submit datapage if browser window is closed   
    Hi @Corpcatalog,
     
    Add Header and Footer on your DataPage and paste the Script below (Make sure that you disable your HTML editor before pasting the code).

    <script>
    window.onbeforeunload = function (e) {
        e = e || window.event;
        if (e) {
            e.returnValue = 'Sure?';
        }
        return 'Sure?';
    };
    </script>

    Here the expected result:





    I hope this helps.
     
×
×
  • Create New...