Search found 6 matches

by emmayashri
April 23rd, 2024, 5:37 am
Forum: Android
Topic: Max file size for CSWeb?
Replies: 2
Views: 2982

Re: Max file size for CSWeb?

Hello, I tried to upload a .pen file to CSWeb and it kept on giving me an error. I tried a smaller file, and it worked, so I am assuming that it's the file's size. Is there a max size for uploaded files? The .pen file is 4.5mb, and I think it's so large because I have a few value sets with images. ...
by emmayashri
April 22nd, 2024, 3:18 am
Forum: Entry
Topic: Apps sharing the same external data file
Replies: 8
Views: 1954

Re: Apps sharing the same external data file

Hey hi, you can store the file in a common directory accessible by both apps. Each app can then access the file using its file path and don't forget to check both apps have permission to read and write to this directory. I'm thinking this question taken from StackOverflow and here is discussion abou...
by emmayashri
April 17th, 2024, 7:26 am
Forum: Android
Topic: Checkbox
Replies: 6
Views: 2656

Re: Checkbox

Hey hi, please check the example you can get some idea. Example. <script> function showOptions() { var favoriteDrinks = document.getElementsByName('favorite_drinks'); var selectedDrinks = []; for (var i = 0; i < favoriteDrinks.length; i++) { if (favoriteDrinks[i].checked) { selectedDrinks.push(favor...
by emmayashri
April 15th, 2024, 8:14 am
Forum: Entry
Topic: HTMLdialog hide buttons
Replies: 6
Views: 965

Re: HTMLdialog hide buttons

Hey hi, have you tried adjusting the display options or resizing the message window? You can also try to use custom HTML dialog if the default ones aren't displaying properly.
by emmayashri
April 13th, 2024, 8:13 am
Forum: Entry
Topic: How to identify the usage of the arrow keys
Replies: 6
Views: 1037

Re: How to identify the usage of the arrow keys

Hey hi, you can use JavaScript event listener to detect keydown events. By checking the event.keyCode property, you can determine whether the user pressed the left or right arrow key. Then, you can execute the appropriate action in your application. ex document.addEventListener("keydown", ...
by emmayashri
April 9th, 2024, 3:53 am
Forum: Entry
Topic: How to generate plus code(postman) from latitude and longitude (GPS)
Replies: 2
Views: 648

Re: How to generate plus code(postman) from latitude and longitude (GPS)

Hey hi, you can use postman.
Use the Google Maps Geocoding API endpoint and replace latitude and longitude with actual coordinates, and YOUR_API_KEY with your API key. Send a GET request and parse the response to extract the Plus Code.