Expand my Community achievements bar.

ocen12
ocen12
Offline
Type
  • All
  • Questions
  • Discussions
  • Ideas
  • Blogs
Filter by user contributions
  • 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

    557

    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

    833

    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

    827

    Likes

    0

    Replies

    0
  • Here you go:Javascript:this.rawValue = Math.round(this.rawValue/1000)this.rawValue = this.rawValue * 1000I'd suggest you the exit or the pre-print/send event.if you want to round down (even if the last three digits are >=500):this.rawValue = Math.floor(this.rawValue/1000)this.rawValue = this.rawValu...

    Type

    Questions

    Views

    827

    Like

    1

    Replies

    0
  • You can make it yourself...You make an if statement into the checkbox, javascript:if (this.rawValue == 1){BillingStreet.rawValue = ShippingStreet.rawValue.rawValue;BillingCity.rawValue = ShippingCity.rawValue;BillingState.rawValue = ShippingState.rawValue;BillingZip.rawValue = ShippingZip.rawValue;}...

    Type

    Questions

    Views

    439

    Likes

    0

    Replies

    0
  • Hihi you have a German name tooOkey, if you only want to have fields, displaying exactly the same you can do it with bindings (like Paul suggested), with the masterpage (if the same field is on every page) or with scripting.The last one is especially good, if you want to change something in the form...

    Type

    Questions

    Views

    2.7K

    Likes

    0

    Replies

    0
  • Of course I'll do... but could you first tell me what exactly you wanted?The three main themes we discussed were:1) fields that will automatically filled2) fields that get invisible by choices3) possibilities to send data/save formfor 1) the original topic here, Paul's solution is the best. ^^

    Type

    Questions

    Views

    2.7K

    Likes

    0

    Replies

    0
  • > Kann man das Formular mit dem Acrobat READER benutzen?Also... mal grundsätzlich. Du kannst das Formular leer speichern.Nachdem es ausgefüllt wird, wird es entweder gedruckt oder per XML versendet. Diesen XML Code kannst du dann in eine Datenbank einlesen lassen. (Wir haben das beispielsweise mit S...

    Type

    Questions

    Views

    2.7K

    Likes

    0

    Replies

    0
  • Oke das mit dem ausserhalb von LCD hab ich nie probiert, wenns drin nicht ging ;D> Welches Feld muß man eigentlich nehmen, wenn man das Script beim "Ziel" hinterlegen will. Frei nach dem Motto: "Wenn Häkchen 1 bis 4 gesetzt sind, dann setze auch dieses Häkchen."Calculate und Validate wären Möglichke...

    Type

    Questions

    Views

    2.7K

    Likes

    0

    Replies

    0
  • Was genau passiert bei deinem Script?Hmm... ich bin eigentlich auch nur ein Amateur was programmieren betrifft ^^ meist auch ziehmlich unsauber und nur aufs Ziel fixiert.Ich hab in eine Optionsfeldliste mit 3 Optionsfeldern ins "MouseUp" Event des jeweiligen Optionsfeldes folgendes geschrieben (Java...

    Type

    Questions

    Views

    2.7K

    Likes

    0

    Replies

    0