-
Content Count
220 -
Joined
-
Last visited
-
Days Won
22
AtayBalunbalunan last won the day on June 8 2020
AtayBalunbalunan had the most liked content!
About AtayBalunbalunan
-
Rank
Advanced Member
Recent Profile Visitors
-
Move records from one table to another based on a field's value
AtayBalunbalunan replied to CaptnK's question in General Questions
There may be various solutions to this using Triggered Actions, CaptnK. You may refer to the following as a sample reference. It is highly advisable to work on test tables and data when troubleshooting Triggered Actions to prevent modifications of your actual live data. You may try the above and check if it works for you. -
GUSTAVO started following AtayBalunbalunan
-
Caspio Bridge allows up to 50 Calculated fields in Results/Details Pages.
AtayBalunbalunan replied to GUSTAVO's question in DataPages
Perhaps, you may consider adding Formula Fields for the calculations. https://howto.caspio.com/tables-and-views/data-types/formula-fields/ -
databydesign reacted to an answer to a question: Keyword search across multiple fields
-
Keyword search across multiple fields
AtayBalunbalunan replied to databydesign's question in General Questions
Seems that there is no example of this in one of their ready-made apps. But it can be achieved by following the instructions in https://howto.caspio.com/faq/reports-datapages/how-to-do-keyword-search-across-multiple-fields/. If you could also provide screenshots or add more details to the workflow that you want to achieve, we may find a solution to it. -
From https://stackoverflow.com/questions/17186777/adding-padding-to-select-options: Other resources: https://stackoverflow.com/questions/5887133/how-to-style-a-select-tags-option-element https://stackoverflow.com/questions/12301729/styling-for-option-values-in-a-html-select-drop-down-doesnt-work-in-chrome-sa https://stackoverflow.com/questions/22681141/select-option-padding-not-working-in-chrome https://stackoverflow.com/questions/31177789/increase-gap-between-select-menu-options
-
Triggered action can't access change that triggered it?
AtayBalunbalunan replied to Mitch's question in Tables, Views and Relationships
Can you provide a screenshot of your triggered action? It will also help if there's a screenshot of the tables, sample input and the results. Not sure if you want to bulk update records, but if it is, you may try Loops. -
AtayBalunbalunan reacted to a question: mailto link/pop-up/redirection
-
The following library may help. https://www.jqueryscript.net/other/jQuery-Plugin-For-BarCode-QR-Code-Reader-WebCodeCam.html https://serratus.github.io/quaggaJS/
-
You may also follow the suggestion in this post using additional DataPages.
-
Free Version of Caspio Limitations
AtayBalunbalunan replied to MattAuer's question in General Questions
To prevent potential abuse/phishing, they also set a limit of 10 emails daily for Free and Trial accounts. It's best to contact Caspio for these cases. https://howto.caspio.com/troubleshooting/errors-and-messages/why-do-i-get-error-50522/ -
You can refer to https://forums.caspio.com/topic/11849-design-question/ for a suggestion using triggered action.
-
Trigger - On INSERT LOOP through another table
AtayBalunbalunan replied to kgraham2121's question in Tables, Views and Relationships
There are several trigger setup that can achieve the output for this, kgraham2121. You can use the following for basis. I've used Variables and Loops. Please use test tables first when developing a trigger to avoid messing up with live data.- 1 reply
-
- trigger action
- loop
-
(and 3 more)
Tagged with:
-
Creating and adding childrecords
AtayBalunbalunan replied to BertM's question in Tables, Views and Relationships
This may be possible using triggered action depending on your workflow. How are you going to add new child records? If you are stamping an ID from the parent record to the child record upon insertion, you can update the value of the total number of child records in the parent record. Below is a sample. Your trigger will be different based on your table design. -
You can inspect the calculated field element. One way to get the value is by this code. document.querySelectorAll(".cbResultSetCalculatedField")[0].innerHTML;
-
Auto format a phone number field javascript
AtayBalunbalunan replied to mcates's topic in User JavaScript and CSS Discussions
Can you check if there is an error in the browser's console, senicholas? https://wordpress.org/support/article/using-your-browser-to-diagnose-javascript-errors/