-
Content Count
23 -
Joined
-
Last visited
Everything posted by PotatoMato
-
Create Customized Report (Export To Word Or Pdf)
PotatoMato replied to Celerity's question in DataPages
Hello everyone, with the release 25.0, Caspio has released a Youtube tutorial on how to generate PDF files. Hope this helps.- 5 replies
-
- report
- customized report
-
(and 2 more)
Tagged with:
-
Hello everyone, with the release 25.0, Caspio has released a Youtube tutorial on how to generate PDF files. Hope this helps.
-
Hello everyone, with the release 25.0, Caspio has released a Youtube tutorial on how to generate PDF files. Hope this helps.
-
Signature filed export actual signature image in results?
PotatoMato replied to roattw's question in General Questions
Hello @roattw, exporting the table will only give you the coordinates of your signatures. You may download the results as a PDF file. by enabling it at the download options. Then after downloading the PDF, you can open the file on your local Microsoft Word app then you will have the ability to save the image of the signature. - PotatoMato -
Changing results columns based on Radio Button selection on the search form.
PotatoMato replied to DiogoBem's question in General Questions
Hello @DiogoBem, just to add a comment from astroboy, Caspio has a Youtube tutorial regarding conditional forms. I hope this helps you out. - PotatoMato -
Add icons to form fields
PotatoMato replied to scottknz's topic in User JavaScript and CSS Discussions
Hello @scottknz, Caspio has a Youtube tutorial regarding "How to Add Icons Next to Field Names". I hope this helps. - PotatoMato -
Remove 2FA on Caspio Bridge
PotatoMato replied to Hayley's question in Security, Authentications, Roles, SAML
Hi @Hayley, please contact the Caspio support directly for the removal of 2FA, but if you're a sub-user they still need to confirm with the account owner for account verification. - PotatoMato -
Hi @Hayley, you may try to add an auto number field to your table and concatenate it with your label for collapsible group, then add a formula field for concatenation: CONVERT(VARCHAR(255),(CONVERT(VARCHAR(255),[@field:AutoNumber]) +' '+ [@field:Categories])) From here, you can now add the formula field to your report datapage and use it as a label for the collapsible group. - PotatoMato
-
Hello @Hayley, The best practice for import and export is via XML format, but if data revision is necessary they recommend using Access. Hope this helps. -PotatoMato
-
Hi @chuckiecc, upon using Caspio I think it is not doable using the basic features, but you can check with them if it is possible using custom codes but it may entail a cost for that. You may also check this forum post: Hope this helps. -PotatoMato
-
Hello @Hayley. Yes, this can be achieved by this formula: (SELECT field_name FROM table_name WHERE ID = target.[@field:ID]) + 1. So every time they click the update button, it will automatically add 1 to your current number of update. Hope this helps. -PotatoMato
-
Hello @Hayley, you can check it on your field properties on the view and check if the "included field in view" checkbox is unchecked for that field. You can also see the image below. -PotatoMato
-
Hello @Hayley, you can use a JavaScript function to encode the string. Below is the sample code. You can input this code into your HTML block where you want to define your link. <script> document.write("<a href='mysite.com?param='" + escape('[@field:FN]') + ">link</a>") ; </script> You can also check the references below: https://stackoverflow.com/questions/2828211/how-can-i-include-special-characters-in-query-strings https://www.w3resource.com/javascript/functions/encodeURIComponent-function.php https://forums.caspio.com/topic/9278-passing-field-valu
-
Remove checkbox is not showing on the details page
PotatoMato replied to Hayley's question in DataPages
Hello @Hayley, if you're unable to show the remove checkbox, check if the field is required. If yes, showing the remove checkbox will not be possible. It will only work for non-required fields. - PotatoMato -
Remove checkbox is not showing on the details page
PotatoMato replied to Hayley's question in DataPages
Hello @Hayley, if you're unable to show the remove checkbox, check if the field is required. If yes, showing the remove checkbox will not be possible. It will only work for non-required fields. - PotatoMato -
Hello @Hayley , there many factors that can cause this issue, You can check this article https://howto.caspio.com/faq/import-and-export/why-my-data-import-is-slow-and-how-to-speed-it-up/, for more information. -PotatoMato
-
Hello @Hayley, using an HTML block to pass the value from the Virtual field will not be possible if the DataPage will not be refreshed. Using a submit button may help the HTML block to receive the current value. Unlike the Calculated value, it will automatically generate data to the field once a value has been entered using a parameter or using another field. You can also check these articles, https://howto.caspio.com/datapages/datapage-components/html-blocks/ https://howto.caspio.com/datapages/datapage-components/calculated-values/ -PotatoMato
-
Style Compatibility While Deploying in Wordpress
PotatoMato replied to deemuss's question in Deployment
I hope this helps -
Style Compatibility While Deploying in Wordpress
PotatoMato replied to deemuss's question in Deployment
Hello @deemuss Adding '!important' to your style is used for overriding the styles that are previously declared in other style sources, in order to achieve a certain design. This is the most cases when deploying Datapages on a web builder. The custom style of the web builder may override some of the Caspio's style, so adding of '!important' may help to retain your original Caspio style. -
Hello @Hayley For acknowledgement and notification email is it recommended to use [@field] parameters, because these parameters are being pulled and saved directly to the source data. you can also check this article, https://howto.caspio.com/parameters/parameter-types/ -PotatoMato
-
Hello, @Hayley. You can position the checkbox label to the right by inserting the name on the 'Display Text' instead of placing it in the label, please refer to the image below. Hope this helps. -PotatoMato
-
Hello @Hayley, you can use the <img> tag on the Display field then insert the source link. You can also refer to the image attached. Hope this helps. -PotatoMato
-
Hi @petercohen090, may you please elaborate on your inquiry? Are you referring to change the URL? If yes, you can check https://stackoverflow.com/questions/824349/how-do-i-modify-the-url-without-reloading-the-page for reference. -PotatoMato