Jump to content

JanineB

Caspio Ninja
  • Posts

    25
  • Joined

  • Last visited

  • Days Won

    1

JanineB last won the day on March 3 2022

JanineB had the most liked content!

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

JanineB's Achievements

  1. Is there a way for a field to autoformat to Canadian Postal Code? The format should be: Letter, Number, Letter, Space, Number, Letter, Number For example: H4Z 9Z9 Thanks!
  2. Can anyone provide me with a solution to my case? I want to automatically copy a value in a text field when the checkbox or radio button is selected. Is this possible?
  3. Hi! Is there a way for me to auto-select all options in the Listbox when a certain value of the radio button is selected? Thanks!
  4. Hello, I have a DataPage that uses this code in the Footer: <script> document.querySelectorAll(`[action*="[@cbAppKey]"] td:nth-child(2)`).forEach(function(elem) { if(elem.innerHTML > 0) elem.style.textDecoration = "line-through"; }) document.querySelectorAll(`[action*="[@cbAppKey]"] td:nth-child(3)`).forEach(function(elem) { if(elem.innerHTML > 0) elem.style.textDecoration = "line-through"; }) document.querySelectorAll(`[action*="[@cbAppKey]"] td:nth-child(2)`).forEach(function(elem) { if(elem.innerHTML <= 0 ) elem.style.textDecoration = "none"; }) document.querySelectorAll(`[action*="[@cbAppKey]"] td:nth-child(3)`).forEach(function(elem) { if(elem.innerHTML <= 0 ) elem.style.textDecoration = "none"; }) </script> This code is used for having the data with line-through if the number is greater than 0. However, even though I input additional column such as the Calculated Field below, it would not show. It seems the code is only used for numbers and not on currency, text or other datatype. I also tried this code but no luck: <script> var elems = document.getElementsByTagName("td"); for (var i=0, m=elems.length; i<m; i++) { if (elems[i].innerHTML>0) { elems[i].style.textDecoration = "line-through";} } </script> Result: What am I missing? I also wanted it to put line through in Text and currency datatypes? Should I convert it? Thanks!
  5. Can I not include the field in the email if it's blank in the form?
  6. How can I get the Yesterday's date in Pivot table to my Header?
  7. JanineB

    Email

    I have form that consists 15 email fields. I wanted to include all of this emails in Notification area however due to character limit I can't input it all. Any advice? Thanks
  8. Is there other way to insert long scripts or codes? It seems HTML block cannot be longer than 10,000 characters
  9. How can I change the label color of my Virtual Field? Thanks.
  10. Is there a way to set a password restriction so the user has to have at least number of characters with capital letters and at least special character? Tnx!
  11. Thank you! What if it is the data in that specific cell, like rows?
  12. Hello. I would like the text in one of the columns in my results table to be red, is this possible?
  13. I want to use CSS code in email notification messages. But it is not working, the final result is not the same. It's just plain text and I'm using Gmail. How can I fix this?
×
×
  • Create New...