-
Content Count
464 -
Joined
-
Last visited
-
Days Won
49
Everything posted by Mathilda
-
As far as I know, it's not possible. Caspio mailers send email on behalf of your email address, therefore you cannot use encryption in this case.
-
Hi, Thank you for sharing
-
Use HTML within Javasccript If Statements
Mathilda replied to Accountability's topic in User JavaScript and CSS Discussions
What type of the datapage do you use? You may have a look at this and this post -
Auto calculating and submitting a form
Mathilda replied to GingerDan's question in Calculations and aggregations
I suppose that you use update form. You should use a little bit different syntax, have a look at this post- 2 replies
-
- datapage
- editrecord
-
(and 3 more)
Tagged with:
-
What is the purpose of using series of autosubmit datapages? I assume that you need to submit values to different table, in this case you need to pass ID to those records. This will let you then join tables in views and give you more flexibility in retrieving data Hope it helps
-
I would use SQL query in calculated field on details page. E.g.: sum(hours) from table_name where user_id=targer.[@field:userid] Calculated field generates a value on the fly on every page load (therefore it's always up-to-date), but if you need to save it in table you may use solution from this post
-
I just wanted to share this solution if you wish to add some text like "Select items" to your list string field, you may use this solution Insert HTML block above the field, disable html editor and insert code: <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"> </script> <script> function placeholders() { document.querySelector("input[type=text][name=ComboBoxInsertRecordField_name]") .setAttribute("placeholder", "Select items"); } $(document).ready(placeholders); </script> Replace Field_name with name of your field.
-
Concatenate the all the results in one Column in an HTML Block
Mathilda replied to NeoInJS's question in General Questions
You may try passing parameters from the search to results page header or html block. Pass parameter on exit for a field on search page, then use parameter names in the header of the results page [@field1] OR [@field2] OR [@field3] -
Need to format details page better
Mathilda replied to Fibonacciphil's question in Styles and Localizations
As far as I understand, borders appear when you embed a datapage to your webpage. If you don't pass parameters to/from the datapage, you may use iframe deployment method, this will let you keep the same look as you have on preview in Caspio. Another option - edit CSS of your website and edit attributes which overwrite caspio style. One more possible option - ovewrite attributes in the header of the datapage, like: <style> #caspioform tr { border: none !important; } #caspioform td { border: none !important; } </style> You can user similar code for other form elem -
You may try appypie, I tried deploying datapages there, works fine. I deployed datapage to "code page" type of page
-
As far as I know, this kind of triggers can be done on the server side only. You may reach out to this team, they implement this kind of requests
-
This kind of validation can be done using Java Script. Have a look at this post
-
Concatenate column values as string in calculated field
Mathilda replied to Heineperson's question in Calculations and aggregations
Calculated field can return only one value. Perhaps, you may create a view, join tables and then use that view as a data source for report with grouping. Hope that helps.- 3 replies
-
- concatenate
- sql
-
(and 2 more)
Tagged with:
-
Do you mean MS Office plugin? It's compatible with office 2013
-
As far as I know, mass insert is not allowed in caspio, therefore I would submit each record separately
-
How do you wish to store this information? I suppose it should be different records. If yes, you may specify "same form" in the destination page. This will let you open a clean form again after previous information is entered. If you wish to keep all the information in one records, you may have a look at this solution
-
Members Only Wix Page - How to pass parameter to Caspio DataPage
Mathilda replied to ciwfootball's question in DataPages
Hi, Wix deploys datapages in iframe and it's impossible to pass parameters from/to datapages or use scripts with redirection I would suggest selecting another CMS like weebly, wordpress.org, godaggy, etc. -
Hi SongLian, I changed code for the footer, it should work now: <script> $('[name=cbParamVirtual2').change(function() { $('[name=cbParamVirtual3').val($('[name=cbParamVirtual2').val()) }); </script> <script> function replace(){ var res= document.getElementsByName('cbParamVirtual3')[0].value; var newchar = '; ' res = res.split(',').join(newchar); document.getElementsByName('cbParamVirtual3')[0].value=res; } document.getElementById("caspioform").onsubmit=replace; </script>
-
Form inside of a form (choose existing customer vs create new)
Mathilda replied to johndavis50's question in DataPages
You may have a look at this post. Another possible option is to enable inline insert option on tabular report which will let you insert a record from report Hope that helps -
Hi, you may enable grouping in collapsible groups. You can find more info here
-
You could insert all those fields in table design in order to have all fields in one record.
-
Hi, InsertRecord is missing before field names in the following lines: document.getElementById("Regular_Hours").onchange=calculate; document.getElementById("OT_Hours").onchange=calculate; You may use onblur event in order to run function onchange, also I would recommend adding one more conditions in order to check that all the values which are being used in calculation are fulfilled with data <SCRIPT LANGUAGE="JavaScript"> function calculate() { var v_hours = parseFloat(document.getElementById("InsertRecordRegular_Hours").value); var v_hoursot =