Jump to content

Merikirin

Members
  • Posts

    18
  • Joined

  • Last visited

  • Days Won

    5

Merikirin last won the day on September 29 2023

Merikirin had the most liked content!

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. Hi @CapNcook, You can also find more information about formulas in Caspio by checking out this link: https://howto.caspio.com/function-reference/
  2. You can also check this How-To article for more information about Report DataPages and the Record Index option: https://howto.caspio.com/datapages/reports/creating-a-report-datapage/#:~:text=Use the Display Options section to configure the default sort order of the results%2C number of records per page and displaying record index.
  3. Hi, @PatataChip, it seems that you checked the displaying of the Record Index in your Report DataPage, you can uncheck it on the configuration of the "Results Page Options". Kindly check the screenshot for reference: I hope it helps!
  4. If it's a Lists or Gallery DataPage, kindly check this code and add it to the Header of the DataPage. <style> .cbResultSetListViewTableOddCell{ border:none!important} .cbResultSetListViewTableEvenCell{ border:none!important} </style> Here's the screenshot after downloading it as a PDF file: Make sure that the HTML Editor from the Advanced option is disabled. Kindly check this link for reference: https://howto.caspio.com/datapages/datapage-components/disabling-html-editor-in-datapage-header-footer-and-html-blocks/ I hope it helps!
  5. Hi @PatataChip, may you please specify what kind of Report DataPage is it?
  6. You can also check our How-To article for more information about Authentication: https://howto.caspio.com/authentications-and-connections/authentication/authentication/ For Failure Message: https://howto.caspio.com/authentications-and-connections/authentication/authentication/#:~:text=configure the following%3A-,Failure message,-- This message is
  7. Hi @PatataChip, you can customize the message displayed when authentication fails. Go to your Authentication then below click the Advanced Settings and select Failure Message.
  8. To know more about managing Files: https://howto.caspio.com/files-and-images/files-in-caspio/
  9. You may have opened an App. It is under the All Assets. Can you check?
  10. Hi, You may want to consider adding a formula field that adds +2 to the value of the Limit field for the row of the Header in the DataPage and the Inline Insert count. And then on the Projects DataPage, you can just add a code to the Header for counting the rows and the field Limit value. The [@FLimit] is the parameter name for the LimitFormula field on the table that you created on the Customers table. I hope it helps!
  11. Hi there! You may also check this How-To article about Referential Integrity: https://howto.caspio.com/tables-and-views/relationships/relationship-settings/#:~:text=Join Tables.-,Referential Integrity,-Select the Enforce
  12. Hi there! If the goal is to check the 2 date fields if they are matched it displays 1 and 0 if not. You can try to check this code: Case WHEN CONVERT(varchar,[@field:XXXX],106) =CONVERT(varchar,[@field:XXXX],106) THEN '1' ELSE '0' END Just change the field names and table names depending on the field that you are using. I hope this is useful.
  13. Hello! If you want to add a formula field on the table using that workflow. You may check this formula: The formula for the first day of the month:DATEADD(MONTH, DATEDIFF(MONTH,-1, [@field:Date]) -1,0)The formula for the last day of the month:DATEADD(MONTH, DATEDIFF(MONTH,-1, [@field:Date]) ,-1) For the [@field:Date] you can use either Date/Time or Timestamp for the field's data type on the formula.
  14. In addition, the application is also available in their Marketplace and you can request the extension at: https://marketplace.caspio.com/details/multistep-form/ I hope it helps.
×
×
  • Create New...