Expand my Community achievements bar.

ocen12
ocen12
Offline
Type
  • All
  • Questions
  • Discussions
  • Ideas
  • Blogs
Filter by user contributions
  • Next Issue... your form works quite good. But I get a Javascript warning that I need to download a newer version of Adobe Reader.With my other two versions I don't get this one and I would prefer not to get it (especially since the ones who receive it will complain) This drives me mad, slow but surl...

    Type

    Questions

    Views

    1.2K

    Likes

    0

    Replies

    0
  • hmm tried that... though all I managed was to get the subforms lower when Textfields expanded... not when they got invisible...Wellwell ^^ I look forward to your mail.My e-mail adress:tryout@web.de

    Type

    Questions

    Views

    1.2K

    Likes

    0

    Replies

    0
  • Didn't work...Both scripts ARE working. But they work in different forms.Hope your PDF is soon dequeued though... Another side question. Since I have not much experience with  floating fields...I want to make a subform by clicking a checkbox invisible/visible... since it takes quite some place is th...

    Type

    Questions

    Views

    1.2K

    Likes

    0

    Replies

    0
  • My problem:I have a textbox that gets invisible when a checkbox is checked in form 1 and invisible if unchecked.I have a textbox that gets mandatory with a red boarder when a checkbox is checked in form 2; if unchecked the boarder is gone and the field is optional.Now I want to achieve both.Since th...

    Type

    Questions

    Views

    3.2K

    Likes

    0

    Replies

    15
  • For 1) you could bind the radio buttons to an identically pair of radio buttons that will only be shown if the user checks no and with the only difference that they include the additional text. The original will hidethemselves if no is checked.For 2) making it visible on preprint should do the job.G...

    Type

    Questions

    Views

    612

    Like

    1

    Replies

    0
  • Humm... did you make the Textfield multiline? (Sry but the easiest solutions often are overseen.)Okey I try to get what you want. I hope I got you right and didn't completly missunderstand you...Let's assume there are 4 checkboxes.Okey so the user has 5 options. He can choose each of the checkboxes ...

    Type

    Questions

    Views

    2.0K

    Likes

    0

    Replies

    0
  • Of course you can have javascript and formcalc in the form. Only not both in the same field, same event ;DOkey, we'll try some things:1) Check out if the "Binding" of the dropdown is same as the values you choose. In script you refer to the binded values.2) Other names for the Textfields would be be...

    Type

    Questions

    Views

    761

    Likes

    0

    Replies

    0
  • Is Javascript okey with you too?Of course you've got to check the right naming too... (most likly it won't be Textfield1/2/3/4)Will also color the border.Most of it is of older scripts I got here ;DExit Event of the Dropdownlist (should work)if (this.rawValue == "1") {Textfield1.presence = "visible"...

    Type

    Questions

    Views

    764

    Like

    1

    Replies

    0
  • EVENT CALCULATE CALCULATE...I can try something on formcalc too... though there is no difference between formcalc and javascript in your caseHere you go with formcalc:Round((SubTotal + OtherCharge1 + OtherCharge2 + OtherCharge3)/1000)*1000

    Type

    Questions

    Views

    1.1K

    Like

    1

    Replies

    0
  • this.rawValue = SubTotal.rawValue + OtherCharge1.rawValue + OtherCharge2.rawValue + OtherCharge3.rawValue;this.rawValue = Math.round(this.rawValue/1000);this.rawValue = this.rawValue * 1000;Exit it Javascript ;Dequivalent:this.rawValue = SubTotal.rawValue + OtherCharge1.rawValue + OtherCharge2.rawVa...

    Type

    Questions

    Views

    1.1K

    Likes

    0

    Replies

    0