Expand my Community achievements bar.

Varma_LC
Varma_LC
Offline
Type
  • All
  • Questions
  • Discussions
  • Ideas
  • Blogs
Filter by user contributions
  • You got some helpful hints...however we failed to achieve what we want. In out case in Acrobat 9.1.0 the Comments/Annotes pane opens after all the events on the form open process completes. This is an Import as Artwork form originally designed in Acrobat PDFWriter 4.0 for windows...which carried the...

    Type

    Questions

    Views

    816

    Likes

    0

    Replies

    0
  • Best practice is to name the subforms some thing different from default names.....I noticed you have every thing right except this.I just renamed bunch of subforms and updated code accordingly....that made the trick I renamed following subforms....Subform[5]>>>>Subform_5Subform[5].Subform1>>>>>Subf...

    Type

    Questions

    Views

    537

    Likes

    0

    Replies

    0
  • Yes...newText is still in the memory not set as rawValue until all the events are fired and curser exits the field.The purpose of my code is to prove you this theory. If you like to review/use current entry you should always use xfa.event.newText so if you wish you can add following code in your cha...

    Type

    Questions

    Views

    499

    Likes

    0

    Replies

    0
  • Right that is how it behaves....First let us check the sequence the events fire with data entry and exit events.First event that gets fired is Validation....then Exit.... and then the value get set to the field. So with first instance of error till all the events are fired the value in the Zip would...

    Type

    Questions

    Views

    500

    Likes

    0

    Replies

    0
  • Sorry for the misunderstanding...I guess you need to have following settings.... Header>>>>Non repeating: automatically prints one time on the first pageSubform1>>>>Non repeating: automatically prints one time on the first pageCopy of Subform1>>>repeating: min=0, initial = 0, max: unchecked, always ...

    Type

    Questions

    Views

    561

    Likes

    0

    Replies

    0
  • Those are simple instructions....I would copy from the existing subform and rename it to some thing and update the code accordingly. Also I am guessing with your current form settings the copy will just follow the existing subform then when you update Pagination settings to "Top of Next Page" the su...

    Type

    Questions

    Views

    557

    Likes

    0

    Replies

    0
  • try the following....if (this.resolveNode("caption.value.#text").value != "Available") {     this.resolveNode("caption.value.#text").value= "Available";     this.fillColor= "55,55,55";}else {     this.resolveNode("caption.value.#text").value= "NotAvailable";     this.fillColor= "255,255,255";}

    Type

    Questions

    Views

    471

    Likes

    0

    Replies

    0
  • also your binging should look like ....$.officeUseOnly.currentPosition[*].Position[*]

    Type

    Questions

    Views

    552

    Likes

    0

    Replies

    0
  • current element set up is defaulting to one occurance....try using following...<xs:element name="Position" type="xs:string" maxOccurs="unbounded" minOccurs="1"/>

    Type

    Questions

    Views

    533

    Likes

    0

    Replies

    0
  • I would use FormCalc for date operations rather than JS....here is simple and similar example...var dSelectedvar wSelectedvar dResultdSelected= Date2Num(DateSelect.rawValue, "YYYY-MM-DD")wSelected= WeekSelect.rawValuedResult= dSelected + (7 * wSelected)DateResult.rawValue= Num2Date(dResult, "YYYY...

    Type

    Questions

    Views

    611

    Likes

    0

    Replies

    0