Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

makeshiftmats
makeshiftmats
Offline

Badges

Badges
6

Accepted Solutions

Accepted Solutions
0

Likes Received

Likes Received
1

Posts & Comments

Posts & Comments
13

Discussions

Discussions
0

Questions

Questions
5

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by makeshiftmats
Customize the badges you want to showcase on your profile
Re: Drop down list selection calculation - Adobe LiveCycle 08-02-2013
Yes, a dropdown list always differes between: Technical Value (Key) and Display Value.The Display Value in your case will be "Flexi days". However, possibly your key is different. xfa.event.newText refers to the key.Just put this into the form and test it. You will then see the code that's selected and you need to adapt the "if" statement accordingly.But this into change event:xfa.host.messageBox(xfa.event.newText);Also ensure that the pathing to your fields is correct when set their values. Con...

Views

133

Likes

0

Replies

0
Re: Calculate only checked boxes that are checked. Other "lines" of boxes do not have a value. HELPPPPPP - Adobe LiveCycle 08-02-2013
You can not edit text lines of dynamic forms after generating the form. You can only edit fields that are configured to be user editable. Usual text isn't.You will need a kind of scripting for your requirement of goal overall calcuation, because you need to exclude the lines without a goal. You can create these scripts in the LiveCycle Designer.Back to Radiobutton/Checkbox Topic: Now where I see your designed form you need RadioButtons. I had a different picture in mind.

Views

220

Likes

0

Replies

0
Re: Drop down list selection calculation - Adobe LiveCycle 08-02-2013
Well yes, put your logic for this into a script on to the change event of the drop down field.You will see the text the user chose in this String: xfa.event.newTextJust code if ( xfa.event.newText == "Flexi days" ){ this.ResolveNode("FieldA").rawValue = this.ResolveNode("FieldB").rawValue; this.ResolveNode("FieldB").rawValue = "";}

Views

130

Likes

0

Replies

0
Re: Calculate only checked boxes that are checked. Other "lines" of boxes do not have a value. HELPPPPPP - Adobe LiveCycle 08-02-2013
Can you post your calculation script? I think it's easier to explain this way

Views

212

Likes

0

Replies

0
Re: Calculate only checked boxes that are checked. Other "lines" of boxes do not have a value. HELPPPPPP - Adobe LiveCycle 08-02-2013
Ok i thought it should be possible to tick and untick such a RadioButton. If this should really be a single of 5 selection you will be fine with radiobuttons.Please see this reference for events on fields.http://help.adobe.com/en_US/livecycle/9.0/designerHelp/index.htm?content=000753.htmlI would suggest to calculate the values by script in the exit event the percentage field. This means that calculation is always done when the user leaves the field.When scripting the calculation you can exclude ...

Views

213

Likes

0

Replies

0
Re: Custom Email Subject from Form Fields - So Close - Adobe LiveCycle 08-02-2013
First of all it's weird to name your variables after your fields. You will receive the field values by using rawValue as radzmar explained. If the pathing to the form field Precedence is correct, then this will work:var Precedence = this.getField("Precedence").rawValue;But since you are in a click even, the pathing will be totally wrong. The value "this" references to the field the user clicked on. Let's say you have the following hierarchy:Subform A _ FieldName: Precendence _ Click Event Fieldt...

Views

83

Like

1

Replies

0
Re: Drop down list selection calculation - Adobe LiveCycle 08-02-2013
Well in case you calculate the number of working days within an own function you could easily assign this value to every field you want.If I got you wrong please enhance your problem description a bit

Views

134

Likes

0

Replies

0
Change pattern of date by JavaScript - Adobe LiveCycle 08-02-2013
Dear experts,we would like to give our users the possibility to change the displayed pattern of a date field in our forms by themselves, because this form will be used worldwide.Is there a way to change the display and edit pattern of a date field by using JavaScript?Thanks!

Views

415

Likes

0

Replies

0
Re: How can I notify users if form is open - Adobe LiveCycle 08-02-2013
You could create a form action to save the form into initialization. Condition: When form "youform" has finished loading: Save the form.This save will fail if somebody else has this form opened.The save will happen in background and you should catch the error to show a proper error message to the user.

Views

256

Likes

0

Replies

0
Re: Calculate only checked boxes that are checked. Other "lines" of boxes do not have a value. HELPPPPPP - Adobe LiveCycle 08-02-2013
At first I recommend to you to use Checkboxes instead of RadioButton. Reason is, that RadioButton can not be unselected by clicking on themselves.Secondly: Why do you limit the possible entries to 6? Or is this just to explain the problem?If I were you I would calculate the value of each line in the "Exit" event of the percentage field and write the result in a hidden field in the same line (I suppose you do have a weighting and a percentage to calcualte, right? Is it about staff appraisals?).Yo...

Views

214

Likes

0

Replies

0
Likes given to
Likes from