Jump to content

mark048

Caspio Ninja
  • Posts

    61
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by mark048

  1. I wanted to post my solution in case anyone else has this problem... I opened the style page to edit it. I clicked Source to open the source code. I then went down to User Defined Styles and added the following code: .cbResultSetTableCell { border-color: #ffffff; } and that's it!
  2. I was able to fix it! I think I must have had the wrong editing table selected in my view. Thank you for the replies!
  3. Basically I either want to delete the files in bulk or disassociate them so I can clear them through Caspio file cleanup.
  4. Yes it is, I’m trying to bulk delete images that are uploaded to my Caspio account. It’ll let me individual delete each record by clicking delete, but if I select all and bulk delete it won’t?
  5. Hello, no it’s still there when I preview directly from Caspio. That was a good thought though, I’ve had Wordpress overrode things before. I’ll send the link to you. Thanks!
  6. Hello, I have a gallery report that is 5 grid columns wide. I have 6 results that show up, which leaves 4 blank gallery squares on the second row (5 on the first row, 1 on the second row, leaving the remaining 4 blank on the second row). How do I get the border around the 4 empty results to go away?? Thanks!
  7. We cannot seem to do a bulk delete of files on a deployed datapage, is there a reason why? We can delete the entries individually, but if we select all files in a bulk select and click delete, nothing happens...basically we want our users to be able to delete multiple images at one time. Thanks
  8. mark048

    Graphing

    Hello, Is there a way to have my graph show percentage complete, without showing the actual numbers? For example, if the rows of my table add up to $500 of the $1,000 Goal, for the bar graph to show 50% complete without showing the numbers? So far I can get it to visually chart 50% on the bars, but it shows $500 instead of 50% Thanks!
  9. Hello, Is there a way to send an external html parameter, and to encapsulate it somehow? The problem I'm having is when a customer enters an "&" sign into the text fields, it throws the parameter off because of that sign. I need to send my parameters in an HTML link thanks!
  10. Hello All, Is it possible to concatenate two virtual fields into a third virtual field on a submission page? It doesn't seem to be working for me. Thanks Mark
  11. Would this help you? Go to your style, make a copy, then search your source/all in the style and find elementcbSubmitButton and add the property display: none; Assign the style to your page. Then go to your data page and add an HTML field and view the HTML source to add this code. <div align="right"> <input onclick="myFunction()" type="submit" value="Submit" /> -Mark
  12. I was able to get rid of the borders through the style in Wordpress, but now you can't really see the text field borders, so it's hard for a user to know where to click to fill in a field. Update: I think I fixed it by editing the style for the data page and adding a color for the background of the fields Thanks!
  13. I figured out I think the problem is within my WordPress site. For some reason it may be overriding the code and ignoring the button part. If I go in and try to hide the submit button in the Caspio style, it works in the preview but not once it's deployed in the WordPress site. I can PM the site if it helps. Or maybe I need to try and fix it in the page ccs somehow.
  14. hmm, for some reason still doesn't work - the button doesn't go away when I click any of the radio fields. Yes - the virtual field is Virtual3 and I put the code in the footer. Thanks, Mark
  15. Thank you. I changed the footer code to yours, but it doesn't seem to be working. I changed the cbVirtualParam to cbVirtualParam30, cbVirtualParam31, cbVirtualParam32, cbVirtualParam33. The button doesn't disappear when any of the radio button options are selected. Any ideas? My virtual field is 3. Thanks again for helping, Mark
  16. How would I amend the code to do the following on a virtual field radio box, submission page. My virtual field is named Virtual3. If choice 1 is selected, hide submission button. If 2 is selected, show submission button. If 3 is selected, show submission button. If 4 is selected, hide button. Here is what I have so far...but it's not working <script> document.getElementById("InsertRecordcbParamVirtual3_0").checked = true; document.getElementById("InsertRecordcbParamVirtual3_3").checked = true; { document.getElementById("Submit").style.display = "none"; } else { document.getElementById("Submit").style.display = "visible"; } </script> Thanks! Mark
  17. I figured it out! Should have been getElements vs getElement for cascading field. <SCRIPT LANGUAGE="JavaScript"> function concatenate() { var x1 = document.getElementById("InsertRecordprojectid").value; var x2 = document.getElementsByName("InsertRecorduserid")[0].value; document.getElementById("InsertRecordprojectiduserid").value = x1+x2; } document.getElementById("caspioform").onsubmit=concatenate; </SCRIPT>
  18. Hi, I've played with this for a couple hours now and can't seem to get it to work. I am receiving a parameter PROJECTID and trying to combine it with a field from a cascading auto complete text field USERID. Both fields are numerical fields. <SCRIPT LANGUAGE="JavaScript"> function concatenate() { var x1 = document.getElementByName("InsertRecorduserid")[0].value; var x2 = document.getElementById("InsertRecordprojectid").value; var projectiduserid = x1 + x2; document.getElementById("InsertRecordprojectiduserid").value = projectiduserid; } document.getElementById("caspioform").onsubmit=concatenate; </SCRIPT> Any ideas what I'm missing? Thanks, Mark
  19. My script is below and works great. I am wondering is there a way to add a Virtual Field Checkbox, and if it is checked, for the code to ignore variables x1, x2, x3, x4, x5, x6, x7, x8, x9, and x10? Basically if the box is checked, fields x1 thru x10 would not be added to emailstosend. I tried doing it through a rule, to disable the cbParamVirtual fields, but that did not work, it still added them in. Let me know if anyone has a solution. Thanks! Mark <SCRIPT LANGUAGE="JavaScript"> function concatenate() { var x1 = document.getElementsByName("cbParamVirtual6")[0].value; var x2 = document.getElementsByName("cbParamVirtual7")[0].value; var x3 = document.getElementsByName("cbParamVirtual8")[0].value; var x4 = document.getElementsByName("cbParamVirtual9")[0].value; var x5 = document.getElementsByName("cbParamVirtual10")[0].value; var x6 = document.getElementsByName("cbParamVirtual16")[0].value; var x7 = document.getElementsByName("cbParamVirtual17")[0].value; var x8 = document.getElementsByName("cbParamVirtual18")[0].value; var x9 = document.getElementsByName("cbParamVirtual19")[0].value; var x10 = document.getElementsByName("cbParamVirtual20")[0].value; var x11 = document.getElementsByName("cbParamVirtual21")[0].value; var x12 = document.getElementsByName("cbParamVirtual22")[0].value; var x13 = document.getElementsByName("cbParamVirtual23")[0].value; var x14 = document.getElementsByName("cbParamVirtual24")[0].value; var x15 = document.getElementsByName("cbParamVirtual25")[0].value; var x16 = document.getElementsByName("cbParamVirtual26")[0].value; var x17 = document.getElementsByName("cbParamVirtual27")[0].value; var x18 = document.getElementsByName("cbParamVirtual28")[0].value; var x19 = document.getElementsByName("cbParamVirtual29")[0].value; var x20 = document.getElementsByName("cbParamVirtual30")[0].value; document.getElementById("InsertRecordemailstosend").value = x1+" "+x2+" "+x3+" "+x4+" "+x5+" "+x6+" "+x7+" "+x8+" "+x9+" "+x10+" "+x11+" "+x12+" "+x13+" "+x14+" "+x15+" "+x16+" "+x17+" "+x18+" "+x19+" "+x20; } document.getElementById("caspioform").onsubmit=concatenate; </SCRIPT>
  20. I missed the "auto-rotate image orientation" option under Edit Options. All set now! -Mark
  21. Hello, When an iPhone image is uploaded to my database, it displays sideways on computers. Ive read it's due to the iPhone image file extension. Anyone find a way to make them show up normal in Caspio without making the customer whose uploading it do a run around? Thanks Mark
  22. Well I was able to add a header and footer plug-in on my WordPress site. But its not working. The only line in this code that needs to be changed is the file name after insert record, correct? My data page is a submission page and I have it as insert record. Thanks, Mark
  23. I think that will work, I just have to figure out how to add the last section to the header of my webpage (I use GoDaddy wordpress). <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script> <link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/themes/smoothness/jquery-ui.css"> <script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js"></script> <meta charset=utf-8 />
×
×
  • Create New...