Jump to content

Mathilda

Caspio Rockstar
  • Posts

    464
  • Joined

  • Last visited

  • Days Won

    50

Mathilda last won the day on April 3

Mathilda had the most liked content!

2 Followers

Recent Profile Visitors

3,167 profile views

Mathilda's Achievements

  1. What kind of validation do you need to do? In case of checking that entered number is between a specific range or checking that date is not in the past, this can be done before record is inserted, however if you need to check that value is unique in the datapage, this can be done only when record is inserted. You may also conciser creating a two step registration - create a submission form with only main fields which control uniqueness and then entering other info on update form. You may find more details here and here Hope that helps.
  2. You may check this post. I posted script for the similar inquiry there
  3. Try to redirect user to another URL and close the window on submit, You may try using the following code in the footer of the datapage: <script> document.getElementById("caspioform").onsubmit=function() { window.open("URL"); window.close(); } </script> Don't forget to specify your URL instead of URL. Cheers!
  4. Hi Andre, I would recommend checking that French (Canada) region is selected in your localization. Week starts from Sunday for this region. Hope that helps
  5. Hi, this solution requires creating a sql function, which is not possible in formula or calculated field. I usually post my requests which fall out of standard behavior here, you may post your idea there as well
  6. Hi, you may try specifying an URL where both datapages are deployed on the Destination and triggers screen of the submission form (select go to a new webpage option) Also you may insert a record directly on a report using inline insert feature. You may find more details here
  7. What type of the datapage you use? If it's a details, you may need to check padding for the .cbFormLabelCell and .cbFormDataCell classes
  8. Do you use login page with redirection? I would check the correctness of the URL. If you use relative path, try specifying the complete URL
  9. Hi, what is the size of the file? The limit is 150 mb for importing. Also, as far as I know, you can import tables only, macros cannot be imported.
  10. Hi, Can you give an example how you store data? Do you store each technique in a separate row? If yes, you could try using sql count function in a calculated field on a report datapage (formula field doesn't support sub-queries) E.g: SELECT COUNT(ID) FROM table_name WHERE ID = target.[@field:incidentID] You may find more details here and here
  11. Hi, you may find a few examples here If you prefer reset button, check this article
  12. Try using the following code in the header of the datapage: <style> .cbGridCtnr > .HeadCtnr > .Table, .cbGridCtnr > .BodyCtnr > .Table, .cbResultSetNavigationTableCellspacing.cbResultSetNavigationTable { width: 100% !important; } </style>
  13. Hi Messy, You may use cascading elements, this will let you filter accounts, associated with a user. Please find more details here
  14. There should be a way, but I'm not sure if it's possible on a front end, you may want to contact this team, they should be able to do that
×
×
  • Create New...