Jump to content

Search the Community

Showing results for tags 'images'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Caspio Bridge
    • Caspio Apps for Ukraine
    • General Questions
    • Caspio JavaScript Solutions
    • Tables, Views and Relationships
    • Import/Export and DataHub
    • DataPages
    • Deployment
    • Security, Authentications, Roles, SAML
    • Styles and Localizations
    • Parameters
    • API and Integration
    • Calculations and aggregations
    • User JavaScript and CSS Discussions

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


MSN


Website URL


ICQ


Yahoo


Skype


Location


Interests

Found 11 results

  1. I have read in the forum that you can use Filestor to save images that can then be used to replace the standard form buttons with an image button. But I haven't been able to find what the URL is supposed to be to pull that image into the Style. I appreciate any help anyone can provide.
  2. I am having difficulty figuring out how to display a jpeg image within a search and report datapage. I have followed every instruction I can find in Help but no luck. All I get in the datapage is the file name of the jpeg image. Can anyone offer advice?
  3. Hi Caspians, I'd like to have a report with a link in the HTML block. But when i mouse over the link, I'd like to view Image related to the Field. Is it possible? Michelle
  4. Hi, My app is very image intensive and I have the user sometimes upload images to CB the normal way (in a File type field from a Submission form) and sometimes the image path/url will come from an S3 Bucket and be stored in a Text255 field. The goal is to have all image paths stored in a single field, whether uploaded by the user to CB or brought from an S3 bucket, and then use that field's file path to display images (because I often copy records and a FileType field cannot be copied without a special trigger set up by Caspio's DevOps, so I use a Text255 field for the image path). I can get the CB image path from the File Type field into a Text255 path, along with the S3 image paths (via formula). So that's done and I now have a single field with image file paths from either CB Upload or S3. The issue is displaying them: S3 images are fine but I can't get the images in CB to display. Neither <img src="[@field:Image_Text255_Field!]"/> or <img src="[@field:Image_Text255_Field/]"/> works if the image is stored in the CB account. Is there a way to reference images in CB from a text255 field to display them? I'd thought it would work the same as referencing a S3 image because it's just a file path and the image in CB is obviously available. Thanks for any help on this--
  5. Is there a way via js or something else, in a Submission form, to Upload an image file using a url (like to a public image in a AWS S3 folder) instead of the user having to Browse to an image file on the local computer? This would be really helpful in pulling images off the web without the user having to download them first, then Browse to them, then Upload. I have a virtual field that would have the image's url in it, I just need to somehow transfer that url to the image field and pull the image to upload on Submission.
  6. I don't know why but Caspio is not letting me upload .jpeg or .png files, individually or even when they're zipped in the 'Files' folder. Any idea why this could be happening? THanks,
  7. Hi everyone, I'm trying to do a Bulk file Upload https://howto.caspio.com/files-and-images/bulk-file-import-and-export/ and when I tried to do it by every method mentioned there, it didn't work. I tried zipping the files and saving the folder as 'Files', I tried to upload several photos at once, and even when I tried to upload a single file I received the Invalid File message. Tried with both .png and .jpeg The reason I'm doing this is because I'm creating a resume access database and the main problem I'm having is getting the image url from an external website to be read by Caspio when its in the table. I'm not using a Caspio form (When I tried using a Caspio form, the photos uploaded by the sample users worked fine) but rather I have to use a form from a pre-existing site, download it to excel, and re-configure it manually to be uploaded as a table to caspio. The main problem I'm having is with the photos (candidate headshots). The table in caspio doesn't recognize the web link in the excel table I upload so I'm trying to upload photos by themselves (which is where I receive the 'Invalid File' error) and then I'd like to somehow connect the uploaded photo files to the appropriate entry in the table (which I don't know how to do). Is there a simpler way to do this? Ideally, if the table could read the web link and use that photo file, that'd solve my main problem. Thanks, Rineet
  8. I am using a search and report DataPage to display a user's profile photo until landing on my Dashboard page. I would like the photo to appear as a circle (just like our profile photo for this forum in the upper-right corner). Any idea on how to do that? I also want the "Welcome, Myles" to be centered vertically to the image.
  9. I have been able to embed the code for a caspio.com database into my Weebly website, except the images did not come with it. Like this is a caspio.com settings issue which I will ask there about. But in case someone on Weebly knows about this issue let me know.
  10. I have created a caspio database of ca 25 field one of which is an image field. I brough this into a Weebly website but the images did not come with it. How should I configure the caspio database so they will show up in the Weebly website?
  11. This script assumes that you have set your YES/NO field to custom formatting, and to display the text "NO" for NO values and YES for YES values. If you have more than one YES/NO field, then you have to have unique text values to display unique images, such as field1: yes=YES1 no=NO1 field2: yes=YES2 no=NO2 and you would adapt the script with additional "else if" conditionals. In your footer, add <script> var elems = document.querySelectorAll("td span"); for (var i=0, m=elems.length; i<m; i++) { if (elems[i].innerHTML=="NO") { elems[i].innerHTML = "<img src=\"FULL_NO_IMAGE_PATH\">"; } else if (elems[i].innerHTML=="YES"){ elems[i].innerHTML = "<img src=\"FULL_YES_IMAGE_PATH\">"; } } </script> an example img tag would be: elems[i].innerHTML = "<img src=\"http://example.com/image.jpg\">"; Could be used for small images like check marks for yes, a red x for no, stuff like that.
×
×
  • Create New...