Expand my Community achievements bar.

Varma_LC
Varma_LC
Offline
Type
  • All
  • Questions
  • Discussions
  • Ideas
  • Blogs
Filter by user contributions
  • I used same scenario in most of my forms....passing XML as input to WSDLs and getting response using SOAP....here is one example that might come handy.....function saveToDocumentum(wfname) { SOAP.wireDump=false; var cWSURL = "http://servername.<domainname>.com:<portnumber>"+"/services/"+wfname+"?wsd...

    Type

    Questions

    Views

    921

    Likes

    0

    Replies

    0
  • You can find more info about this solution at http://www.windjack.com/product/acrodialogs/also check http://www.windjack.com/resources/Examples/DialogUses.pdf  here is an example that might help you achieve what you are looking for...  var CustomAlert ={    result:"cancel",    DoDialog: function(){r...

    Type

    Questions

    Views

    528

    Likes

    0

    Replies

    0
  • 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

    809

    Likes

    0

    Replies

    0
  • Hi There,            We have need to determine state of Annotes and Attachment panes open/close with every document open and do some actions based on that state. Here is the script that toggles app.execMenuItem("ShowHideAnnotManager") notes/Comments panel. But we need to determine the state of the p...

    Type

    Questions

    Views

    2.4K

    Likes

    0

    Replies

    3
  • 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

    532

    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

    498

    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

    499

    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

    553

    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

    549

    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

    467

    Likes

    0

    Replies

    0