Jump to content

ppbb123

Caspio Ninja
  • Posts

    32
  • Joined

  • Last visited

  • Days Won

    3

ppbb123 last won the day on January 28 2016

ppbb123 had the most liked content!

Recent Profile Visitors

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

ppbb123's Achievements

Newbie

Newbie (1/14)

10

Reputation

  1. When there are multiple records in the results page, there will be a navigation with message "Record 1 of X" in the details page. But if there is only one record in the results page, there will be no navigation. I wonder to know how to show the message "Record 1 of 1" in the details page.
  2. Hi, I use this method to display the last 4 characters in a result column . In a HTML Block: <script> var str = "[@field:area]"; // get the value of area field var res = str.slice(-4); // get the last four characters of area field document.write(res); // display </script> How to display the same thing in details page? I cannot use HTML Block because the style looks different.
  3. Is it possible after the end-user clicks the Submit button, I can dynamically redirect a user to a specific URL based on the checkboxes' value? For example: There are two checkboxes, "Search1" and "Search2". If "Search1" is checked, form submission goes to "www.gooogle.com". If "Search2" is checked, it goes to "yahoo.com". If neither is checked, it goes to "bings.com" If both are checked, it goes to "Home.com" .
  4. How to force a numeric keyboard? Is it possible? When user inputs to a number field, he/she would get the numeric keyboard on the iPhone browser. Thanks for any suggestion.
  5. Thank you so much. That helps me a lot. And I figured out the code to restrict number field. <script type="text/javascript"> function show_confirm() { //get the insert value var numberField= document.getElementById("InsertRecordNumberField").value; //compare the range, if the number field is between 1 to 100, then submit, otherwise an error message pops up if ( numberField >= 1 && numberField <= 100) { document.getElementById("caspioform").submit(); } else { alert("Wrong Data. Escape Submitted."); return false; } } document.getElementById("caspioform").onsubmit=show_confirm; </script>
  6. I have created a popup window that goes to a submission form. I want my original (parent page) to reload when the popup window is closed after submitting. I can't seem to get it to work, window.opener.location.reload(true); is not working. Any suggestion? Thanks
  7. I saw field can be positioned next to the previous field. But I want to make the next whole Section appear horizontally on the same line. Thanks
  8. How to make a page open at the bottom after loading? For example, I deployed the report DataPage at the bottom of my website. After searching, the page should stay at the same position at the bottom instead of loading the top.
  9. How to resize an iFrame based on the content being loaded in it? My Iframe code is like: <iframe width="100%" id="myFrame" src="URL.htm" scrolling="no" frameborder="0" "> Thanks
  10. I have a submission form. The width of one dropdown field is too wide. How to fix the width of that? Thanks. By the way how to fix the width of all dropdowns?
  11. How to show an icon in report page when a checkbox is checked? Thanks.
  12. Hi I want to timestamp two specific fields of a record. I have a calendar table that has a place for 2 files to be uploaded in the details page (one for client prep work, the other for post meeting notes). Is there any way to record a timestamp that instead of timestamping when the record was updated? How to timestamp when one specific field is updated? I have the following fields: File1 Update1 File2 Update2 Thanks
  13. Hi, I found the link how to select multiple values from a listbox in a WebForm, but how about the Update Form or Details page? Thanks
  14. How to calculate age and save it in the submission form? I have a Date/Time field which is "Birthday", and another Text field which is "Age" in my table. Thanks
×
×
  • Create New...