Expand my Community achievements bar.

_Bruce_Robertson
_Bruce_Robertson
Offline
Type
  • All
  • Questions
  • Discussions
  • Ideas
  • Blogs
Filter by user contributions
  • Hi Jorge,I'm not sure what you mean by work independently from each other when it comes to "binding", Do you want the details to auto-populate or are you looking for a button to optionally populate the form.Bruce

    Type

    Questions

    Views

    3.9K

    Likes

    0

    Replies

    0
  • Hi Tarek,Adobe used the <proto> element to implement the styles that came with ES3 so I believe they are safe to use.  But don't understand why there's not more documentation about them, John Brinkman did do an example Track PDF Forms with Omniture My idea of creating a custom object was just to sav...

    Type

    Questions

    Views

    2.8K

    Likes

    0

    Replies

    0
  • Hi Tarek,Sorry my last post was a bit limited.  Dragging the field to the (Referenced Objects) node has the same effect as adding the <proto> tab and adding a field underneath it.So as a simple example, I have a form with two date fields that reference a date field under the <proto> tag.There are tw...

    Type

    Questions

    Views

    2.8K

    Likes

    0

    Replies

    0
  • Good to see you got it working, you must have some of the most complicated PDF forms out there.I did use the proto objects on a version of the 'ghost text', Adobe LiveCycle Designer Cookbooks by BR001: Adding Ghost Text to LiveCycle Designer form , Be careful to read Radzmar's comment, I would proba...

    Type

    Questions

    Views

    4.1K

    Likes

    0

    Replies

    0
  • Hi,I would use the shortest path possible, I also use the script editor to insert the path for me.1) Ensure that the Script field of the Script Editor has the focus and the cursor is positioned where you want to insert the object reference.2) Hold down the Ctrl key and on your form design view, clic...

    Type

    Questions

    Views

    6.8K

    Like

    1

    Replies

    0
  • Hi,Have a look at this versionhttps://sites.google.com/site/livecycledesignercookbooks/home/loanrequest_111318a.updated.pdf?attredirects=0&d=1 The row total calculation expression needs to be "$ = Quantity * Value" ... which is what radzmar suggested.RegardsBruce

    Type

    Questions

    Views

    6.8K

    Like

    1

    Replies

    0
  • You probably want a calculate script on your second field, something like;xfa.resolveNode("SSN[0]").isNull     ? ""     : '***-**-'+xfa.resolveNode("SSN[0]").rawValue.substr(-4)You will need to change the "xfa.resolveNode("SSN[0]")" bits to reference your fields.

    Type

    Questions

    Views

    533

    Likes

    0

    Replies

    0
  • The XFA object model is divided into a number of parts, the form is under xfa.form, the template under xfa.template, etc.  To use the descendent operator, the two dots ".." you have to say which model to look in.Tryxfa.resolveNode("xfa.form..ChildSubform").MyTextfield.rawValueorusing the shortcutxfa...

    Type

    Questions

    Views

    2.4K

    Like

    1

    Replies

    0
  • Hi Tarek,There is the Net.HTTP object in the Acrobat JS reference, https://wwwimages2.adobe.com/content/dam/acom/en/devnet/acrobat/pdfs/AcrobatDC_js_api_reference.pdf?nameddest=G5.1957619 But I haven't used it and believe there's some security issues to resolve.You can't update the headers using the...

    Type

    Questions

    Views

    4.1K

    Likes

    0

    Replies

    0
  • Hi Try duplicating your docReady code before the case statement, the default branch is executed when no case branch is selected so in your case will be executed when the radiobutton value is not between 1 and 6

    Type

    Questions

    Views

    1.4K

    Likes

    0

    Replies

    0