Expand my Community achievements bar.

mdawn50
mdawn50
Offline
Type
  • All
  • Questions
  • Discussions
  • Ideas
  • Blogs
Filter by user contributions
  • Hello,I have a table with 6 columns and 5 rows. Each cell is a DDL. If the user selects rawValue == 3 in a cell in a row, the remaining cells in the row need to be set to rawValue 3 automatically.Any help with the script for this would be appreciated.Thanks,MDawn

    Type

    Questions

    Views

    1.1K

    Likes

    0

    Replies

    4
  • Hello,On my form, I need for the user to enter a "date needed by". Then I need to compare the needed by date to today's date and if it is less than 15 days away, I need to display a message: We need more than 15 days to fulfill your order."I've found some scripts on the Forum, but none are exactly w...

    Type

    Questions

    Views

    3.2K

    Like

    1

    Replies

    4
  • I have a field that calculates a total. I'd like for the total if it's less than or equal to 250.00 to make a subform visible. The end user does not put their cursor in or leave the total field. What event should I use for my script?Here's the script:if (this.rawValue <= 250.00) {    page1.superViso...

    Type

    Questions

    Views

    3.0K

    Likes

    0

    Replies

    5
  • Hello,I have this script in a submit button://Create a variable to hold the document objectvar oDoc = event.target;oDoc.mailDoc({bUI: true,cTo:  heading.system.rawValue,cCc: "",cSubject: heading.sevLevel.rawValue" - " + heading.description.rawValue" - " + heading.location.formattedValue,cMsg: formFi...

    Type

    Questions

    Views

    718

    Likes

    0

    Replies

    1
  • Hello,I have a drop down list where I already use the value field in another spot in the form. But now I need to use the text of the item in the email subject line I'm sending.I can get the Value, ok. How do I get the Text?Thanks,MDawn

    Type

    Questions

    Views

    825

    Likes

    0

    Replies

    2
  • I have this script on the change event of a text field:if ((this.rawValue != "null") || (this.rawValue != "")){ checkBoxThree.presence = "visible";}else{ checkboxThree.presence = "hidden";}It is correctly displaying the checkBoxThree subform when data is entered in the text field. However, if the us...

    Type

    Questions

    Views

    9.5K

    Likes

    0

    Replies

    5
  • I have a text box that if the user types in text will make a checkbox required. All this is working fine now. However, if the user goes back and deletes the information typed in the text field, the message box still displays and the checkbox is still outlined in red indicating it's required. Can I p...

    Type

    Questions

    Views

    1.2K

    Likes

    0

    Replies

    4
  • I have a text field where if the user has entered a value, then the checkbox that follows must be mandatory. I have this script that works (sort of), but I'm not sure which event to use to get the results I want. I want the message and the checkbox to be mandatory only if something is typed in the f...

    Type

    Questions

    Views

    1.3K

    Likes

    0

    Replies

    3
  • Hello,I have a script in the exit event of a DDL, where if the rawValue == '8', then page8 should appear after the current page. The form is set to dynamic, the page is set to Hidden, Pagination on page8 is set to Following Previous. Here is the script:  if (this.rawValue == '4'){ when.presence = "v...

    Type

    Questions

    Views

    836

    Likes

    0

    Replies

    2
  • I have a script that's supposed to make subforms visible based on the selection in 3 DDLs. The script seems to work sort of. The space is there but the actual content of the subform is not visible.The subforms are set to Hidden.The script is set in the exit event of the third DDL.Thanks,MDawn

    Type

    Questions

    Views

    1.3K

    Likes

    0

    Replies

    4