Jump to content

Darina

Members
  • Posts

    4
  • Joined

  • Last visited

Darina's Achievements

Newbie

Newbie (1/14)

1

Reputation

  1. Hello! I am looking for a way to disable a radio button. If I select one I can only switch to another one. I want to be able to leave all radio buttons blank. Is there any way to do that? Thank you.
  2. If I understand correctly, you want to check if the Cookies are enabled on the Authentication page. You can use JavaScript code. Please follow these steps: 1) Open your Authentication, select Custom in the Setup options field. 2) In the Element section, add a Header&Footer element (the Plus button in the header of the section). 3) To the Footer, add the JavaScript code: <script type='text/javascript'> function are_cookies_enabled() { var cookieEnabled=(navigator.cookieEnabled)? true : false; if (typeof navigator.cookieEnabled=="undefined" && !cookieEnabled) { document.cookie="testcookie"; cookieEnabled=(document.cookie.indexOf("testcookie")!=-1)? true : false; } if (!cookieEnabled) alert('Cookies are disabled!'); } window.onload=are_cookies_enabled; </script> You can enter your text instead of "Cookies are disabled".
  3. I have six checkboxes on my Submission Form. I want the user to check one of the checkbox before clicking Submit. The user will not be able to submit the form unless either one of the 6 checkboxes is checked. Thanks
  4. Hello. Steps to set up a range: 1. Proceed to Configure Search Fields screen of your DataPage. 2. Select the field that will contain the range of "total wages". 3. Select "Listbox" from the "Form element" dropdown menu. 4. From Comparison type dropdown menu pick "Range". 5. Choose "Custom Values" as a "Source" of your Range. 6. Insert values for "Display"/"Range start"/"Range end". For example: $ 60,000.00 to $ 70,000.00/ 60000/ 70000 You can set up several ranges according to your need using the "New" button. See the screenshots attached. You may also Select "Lookup table or view"/"Both" if you have one field for range start and another for range end in your Table on step 5. Hope this helps!
×
×
  • Create New...