Jump to content

Search the Community

Showing results for tags 'form'.

  • 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 14 results

  1. Good afternoon, I am attempting to have my general form background have rounded edges. I have attempted adding the below code to various locations in the Layout Source area. I will most likely not want 24px, but I just was trying to find the correct area of the CSS to modify. -webkit-box-sizing: border-box; -moz-box-sizing: border-box; -moz-border-radius: 24px; -webkit-border-radius: 24px; -khtml-border-radius: 24px; border-radius:24px; box-sizing: border-box; As an alternative should I upload an image with the correct color and shape to be used as a background instead? If I go this route will there be any sizing issues. Any and all help is much appreciated!
  2. Benades

    Referral Link

    Hi, I need to create a typical referral link when followed it would auto complete a field (Referrer ID) in a registration form. All the examples I've seen talk about passing parameters from one form to another without being seen where in my case I need it displayed as text (or URL). Thanks for the input
  3. I have submission form and when i put label position = left. the field/form element (could be a textfield, dropdown etc) will appear to the far right. Example: Expected result I am looking for Brand Type: <text field> What I see on caspio form Brand Type: <text field> How do I reduce the spacing between label and form element? I don't know where in the style is controlling the spacing. I need the table or container to be 100% as my page is suppose to be responsive page. Can anyone help?
  4. I wonder if some of our submission forms fail to load ocassionally. I see this happening when I look Google Ads account and see there examples of starting pages that are served to ad clickers. Since I recognised this I have tried to locate this insident with Crossbrowser testing and browserstack screenshots and live tests but it wont appear. Once though I caught myself a situation where datapage did not load and I refreshed and refreshed but it failed to load. When I cleaned the page cache it finally loaded. Do any of you guys know what is going on here? Is this really happening and perhaps why it does happen. Since the update to 13.0 we have had AJAX disabled. After I spotted this issue I enabled load AJAX feature from datapage settings but that did not seem to do any difference. According to search console with various browsers there are no errors on these pages. I have included a screenshot from our ads account to show you guys how this suspicious situation really looks like. If it is happening it is really unfortunate because we pay for the traffick to these landing pages and then sign up form is totally missing. Thank you for reding this and would appreciate your comments.
  5. Can i create self-authenticate section in a from? Like i input some data in a form and after clicking submit option i should have a preview screen with some valuable data for recheck. can i have that in caspio?
  6. I wrote this simple code which takes in parameters from the database Caspio to create a simple table. I just want this table to remove all fields which are empty. Since email servers do not run javascript, what is the best way to hide the rows which are empty (the paramters such as @field:Facility is not filled out). Thanks! I've also added the code: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <style type="text/css"> tr:nth-child(even) { background-color: #D3D3D3 } </style> </head> <body> <table class="Form" border="5" width="95%" cellpadding="10"> <thead> <tr> <th colspan="2">&nbsp; <h3>[@field:TestOrder] - [@field:Facility]</h3> </th> </tr> </thead> <colgroup> <col width="250" /> <col width="750" /> </colgroup> <tbody> <tr> <th>FIELD</th> <th>RESPONSE</th> </tr> <tr align="LEFT"> <td>Facility :</td> <td>[@field:Facility]</td> </tr> <tr align="LEFT"> <td>Patient ID :</td> <td>[@field:PatientID]</td> </tr> <tr align="LEFT"> <td>First Name :</td> <td>[@field:PatientFirst]</td> </tr> <tr align="LEFT"> <td>Last Name :</td> <td>&nbsp;</td> </tr> <tr align="LEFT"> <td>Date of Birth:</td> <td>[@field:DateOfBirth]</td> </tr> <tr align="LEFT"> <td>Gender :</td> <td>&nbsp;</td> </tr> <tr align="LEFT"> <td>Primary Phone :</td> <td>[@field:PrimaryPhone]</td> </tr> <tr align="LEFT"> <td>Secondary Phone :</td> <td>[@field:SecondaryPhone]</td> </tr> <tr align="LEFT"> <td>Emergency Contact :</td> <td>[@field:EmergencyContact]</td> </tr> <tr align="LEFT"> <td>Emergency Number :</td> <td>[@field:EmergencyNumber]</td> </tr> <tr align="LEFT"> <td>Patient Address :</td> <td>[@field:PatientAddress]</td> </tr> <tr align="LEFT"> <td>City :</td> <td>[@field:City]</td> </tr> <tr align="LEFT"> <td>State :</td> <td>[@field:State ]</td> </tr> <tr align="LEFT"> <td>Zip Code :</td> <td>[@field:ZipCode]</td> </tr> <tr align="LEFT"> <td>Special Instructions :</td> <td>[@field:SpecialInstructions]</td> </tr> <tr align="LEFT"> <td>Primary Insurance :</td> <td>[@field:PrimaryInsurance]</td> </tr> <tr align="LEFT"> <td>Primary Subscriber ID :</td> <td>[@field:PrimarySubscriberID]</td> </tr> <tr align="LEFT"> <td>Primary Subscriber Relationship :</td> <td>[@field:PrmarySubscriberRelationship]</td> </tr> <tr align="LEFT"> <td>Secondary Insurance :</td> <td>[@field:SecondaryInsurance ]</td> </tr> <tr align="LEFT"> <td>Secondary Insurance ID :</td> <td>[@field:SecondaryInsuranceID ]</td> </tr> <tr align="LEFT"> <td>Secondary Subscriber Relationship :</td> <td>[@field:SecondarySubscriberRelationship ]</td> </tr> <tr align="LEFT"> <td>Diagnosis :</td> <td>[@field:Diagnosis]</td> </tr> <tr align="LEFT"> <td>Other Diagnosis :</td> <td>[@field:OtherDiagnosis]</td> </tr> <tr align="LEFT"> <td>Physician Name :</td> <td>[@field:PhysicianName ]</td> </tr> <tr align="LEFT"> <td>Other Physician :</td> <td>[@field:OtherPhysician]</td> </tr> <tr align="LEFT"> <td>Physician Phone :</td> <td>[@field:PhysicianPhone]</td> </tr> <tr align="LEFT"> <td>Physician Fax :</td> <td>[@field:PhysicianFax]</td> </tr> <tr align="LEFT"> <td>After Hours Phone :</td> <td>[@field:AfterHoursPhone]</td> </tr> <tr align="LEFT"> <td>Test Order :</td> <td>[@field:TestOrder]</td> </tr> <tr align="LEFT"> <td>Test Duration :</td> <td>[@field:TestDuration]</td> </tr> <tr align="LEFT"> <td>Holter Performed :</td> <td>[@field:HolterPerformed]</td> </tr> <tr align="LEFT"> <td>Holter Test Order :</td> <td>[@field:HolterTestOrder]</td> </tr> <tr align="LEFT"> <td>Holter Duration :</td> <td>[@field:HolterDuration]</td> </tr> <tr align="LEFT"> <td>Previous Holter Date :</td> <td>[@field:PreviousHolterDate]</td> </tr> <tr align="LEFT"> <td>Requested Start Date :</td> <td>[@field:RequestedStartDate]</td> </tr> <tr align="LEFT"> <td>Receive Monitor :</td> <td>[@field:ReceiveMonitor]</td> </tr> <tr align="LEFT"> <td>Recorder ID Number :</td> <td>[@field:RecorderIDNumber ]</td> </tr> <tr align="LEFT"> <td>H_P :</td> <td>[@field:H_P]</td> </tr> <tr align="LEFT"> <td>Upload HP :</td> <td>[@field:UpploadHP]</td> </tr> <tr align="LEFT"> <td>Authorize :</td> <td>[@field:Authorize]</td> </tr> <tr align="LEFT"> <td>Submit :</td> <td>&nbsp;</td> </tr> </tbody> </table> </body> </html>
  7. Hi everyone, can you help me? I want to People submit form person of IT receive mail, he can check yes or no if IT peaple checked yes then mail he's send to one person resposible of app http://howto.caspio.com/tech-tips-and-articles/common-customizations/tech-tip-how-to-validate-a-user-email-address/ i have already saw that, but only one mail is possible for validation. Thanks for your help.
  8. Hi everyone, can you help me? I want to People submit form person of IT receive mail, he can check yes or no if IT peaple checked yes then mail he's send to one person resposible of app http://howto.caspio.com/tech-tips-and-articles/common-customizations/tech-tip-how-to-validate-a-user-email-address/ i have already saw that, but only one mail is possible for validation. Thanks for your help.
  9. Hi everyone, I have a problem can you help me? I want to insert in my webform a logo image, Is possible to store image in caspio bridge and display after or i have to store my logo on web? thanks you for helping.
  10. I've set up a form with a required drop-down question. I've created a lookup table to provide the options within the drop-down. When I choose an option in the drop-down and click the Submit button, the drop-down gets a "Required" in red error message. Any ideas on what I'm doing wrong?
  11. I have a lookup table that lists several (around 20) items to check off in a to-do list where the table is named “todo†with fields setup as todo_Num (integer), todo_Item(integer) todo_Desc(text) and todo_Cat(text). I also have a “todo_complete†table with the fields of Comp_Num (integer), todo_num(integer), Fin(checkbox) and Explain(text). I have been able to setup a submission form with virtual1 field displaying the todo Descriptions in a dropdown with 2virt fields cascading the todo_Num and todo_Item, from todo_desc then linking to the todo_complete table. Unfortunately the dropdown and listbox do not display the desired user experience. I would like to list all todo items displayed as a check-off list. Where after checking an item on the list, the user can fill out an explanation of actions taken and that the item has been repaired. I have been able to show the full todo table rows in a report form (much cleaner) but am unable to pass the [@todo_Item] (and/or the other parameters) to the "todo_Comp" table submit form in an Iframe. Any suggestions are greatly appreciated. I had originally used the example as shown in the "Build an Inspections Management Application" http://howto.caspio.com/pre-recorded-live-training/build-an-inspections-management-application/ unfortunately Neds solution does not allow the option of adding tasks to the list without going into the Inspections table and creating new fields for that task. I also believe this structure would fail normalization in my situation, with multiple fields being dependent of others in the table. (for example the fields.. todo_Item, Number_of_Light_Bulbs_Broken and Action_Taken would be associated with each other). Much cleaner to hold the results in a separate "todo_complete" table.
  12. I have a report data page that lists all customers and purchase orders through a left outer join view that shows ALL Customers and Purchase Orders, regardless of the whether the PONum field is blank or contains a PO Number. How can I label the blank fields to show something like "No Orders " instead of a blank field. All suggestions are greatly appreciated.
  13. Good afternoon, I have made a few search pages with the method outlined here. These are working fantastic, but I would like a button to allow users to clear out the form and the method here has no effect whatsoever. I have not deployed the version with the reset button so please let me know if this is just a feature that does not work in previews. Thank you for your time, -Blue
  14. This is for a submission form. I would like to use no label, and instead have a placeholder-label within the text field. I know I can do this by assigning a static value under Advanced. My problem is that when the user clicks in the text field, then the text is still there. I would like it to disappear. Is this possible? I'm really grateful for any help. Bjorn
×
×
  • Create New...