
Carioca
-
Content Count
27 -
Joined
-
Last visited
Reputation Activity
-
Carioca reacted to AtayBalunbalunan in Label position
You can put multiple fields in one section and set the section's Label position default to Top.
-
Carioca reacted to AtayBalunbalunan in Deleted an app but several tables were not deleted
This is an expected result when your tables are shared with other app. Objects that are shared with your other apps will not be deleted when you delete an entire app.
-
Carioca reacted to AtayBalunbalunan in Record cannot be saved because an error was encountered in Triggered Actions
Please ensure that you don't have referential integrity enabled in you table relationship.
According to the note in https://howto.caspio.com/tables-and-views/triggered-actions/:
-
Carioca reacted to AtayBalunbalunan in Page does not exist
This may happen after your application has been renamed. Other users of your account might have renamed your application before you navigate to the application's DataPages.
-
Carioca reacted to AtayBalunbalunan in Make label for required fields bold
You can set the label for required fields to bold under Labels > Required in your Style.
-
Carioca reacted to AtayBalunbalunan in Missing section in action list
A common reason why a section is not appearing in the Action list is because it is already been used in another Action. Each field or section can be used only in one action (and therefore will no longer appear in the dropdown list).
Only standard editable fields may be used in Actions, and the following cannot be used:
Required fields Display Only fields Calculated Value fields Section with Required fields The same field or section already used in another Action Calculated Fields, CAPTCHA, and Distance Search fields HTML Blocks Hidden or smart fields (Timestamp, AutoValue, ViewIncrement) Static action on Password fields Secondary field used in multiple search criteria (such as in Date Range)
To know more about Conditonal Forms, please refer to this: https://howto.caspio.com/datapages/forms/conditional-forms/
-
Carioca reacted to AtayBalunbalunan in Background color of checkbox in MacBook
The color of the checkbox is based on the Accent color preference of a user's MacBook. It can be changed via Apple menu > System Preferences > General. The Accent color is the color used throughout the user interface for menus, buttons, active form fields and more. The default color is blue. Below are the references:
https://support.apple.com/en-ph/guide/mac-help/mchlp1225/mac
https://www.accessibility.barclays.com/macos-mojave-accent-colour/
-
Carioca reacted to AtayBalunbalunan in Preview HTML email in trigger
Have you tried clicking the “maximize” icon?
-
Carioca reacted to AtayBalunbalunan in Import data in RAR format
Caspio Bridge does not accept RAR format.
Please refer to this documentation for list of allowed formats: https://howto.caspio.com/tables-and-views/importing-data/
-
Carioca reacted to AtayBalunbalunan in Change color of the label of HTML Block
Just edit the style of your DataPage, select Labels under Results Page, then Non-interactive Header Labels. You can choose the color under Font Options.
You may refer to this documentation regarding Styles.
-
Carioca got a reaction from AtayBalunbalunan in SMS action in trigger not working
Thanks, this solved the issue.
-
Carioca reacted to AtayBalunbalunan in SMS action in trigger not working
Please try to change the data type of your PhoneNumber field to Text.
-
Carioca reacted to AtayBalunbalunan in Failed logins
No, in the event of a password reset, the lockout time will be cleared.
-
Carioca reacted to AtayBalunbalunan in Original form is not refreshed after a new option is submitted in the popup window
In order to refresh the original form, both DataPages must be embedded in webpages with the same domain name.
-
Carioca reacted to AtayBalunbalunan in Where to put the value for X in Next X Days comparison type
The value for X should be in the Default Value field under Field Options.
-
Carioca reacted to ManokNaPula in File data type in Trigger
Hi Carioca,
Like the previous comment said, File and List DataTypes are not available in triggers, but we do have workarounds. So, since I can not pass the files, what I did was to store the files on the Filestor CDN. From there I was able to get the Full path of the file by first displaying the files on a reports page.
The path should look like this: https://eucdn.caspio.com/XXXXXXXX/folder_name/file_name
Then using formula field, you can just concatenate the file name, from there, you can now access the files and now, you can also use it inside the trigger.
Very tedious process but this worked for me. More about filestor on this link.
Hope this helps.
-
Carioca reacted to AtayBalunbalunan in Long text in rollover hints
You can use <br> tag for line breaks.
Example: Lorem ipsum dolor sit amet, consectetur adipiscing elit, <br> sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. <br> Ut enim ad minim veniam, quis nostrud exercitation ullamco <br> laboris nisi ut aliquip ex ea commodo consequat.
-
Carioca reacted to AtayBalunbalunan in Checkbox that will select all items in a multi-select listbox
You can use the code below as a reference.
<script type="text/javascript"> document.addEventListener('DataPageReady', function (event) { var c_checkbox = document.getElementById("selectAll") ; var elementID = event.detail.uniqueSuffix; function c_event () { if (c_checkbox.checked) { var listBox = document.getElementById('Value1_1' + elementID); for (i = 0; i < listBox.options.length; i++) listBox.options[i].selected = true; } else { var listBox = document.getElementById('Value1_1' + elementID); for (i = 0; i < listBox.options.length; i++) listBox.options[i].selected = false; } } c_checkbox.onclick = c_event; }); </script>
Add this in your search's footer with the HTML editor being disabled. Just make the necessary changes for your form elements' ID attribute. You may use this guide for that.