


hey, sorry my english isnt perfect. Who can help me , how to show value of fields ?
how to get value of nip1[0] ??
[ Moderator: Moved to LiveCycle Designer forum ]
sdasda37384323
sdasda37384323
06-06-2018
ok i can get value of field:
$stamper.AcroFields.Xfa.DomDocument.xdp.form.subform.subform.subform.field.value.text
return Jack
when i run:
$stamper.AcroFields.Xfa.DomDocument.xdp.form.subform.subform.subform.field.value.text="Tom"
$stamper.close()
In my pdf still is Jack, why ? I set in this field tom. Can someone explain me ?
_Bruce_Robertson
MVP
_Bruce_Robertson
MVP
06-06-2018
I'm a bit lost now, this thread started with a question about using the Acrobat debugger, then there was an iText question.
I'm not sure what you were trying to do with that field reference and in which context.
Are you trying to get the combined value of the NIP1 and Naczelnik fields?
sdasda37384323
sdasda37384323
05-06-2018
can you write me correctly code
_Bruce_Robertson
MVP
_Bruce_Robertson
MVP
05-06-2018
The reference is case sensitive and the group item naglowek doens't have a rawValue property, you need the NIP1 after it
sdasda37384323
sdasda37384323
05-06-2018
xfa.deklaracja.strona1.naglowek.rawvalue; nip should work ?? but this doesn't work...
_Bruce_Robertson
MVP
_Bruce_Robertson
MVP
05-06-2018
I haven't tried, but would imagine so. Something for the itext forum
sdasda37384323
sdasda37384323
04-06-2018
i have next question. Powershell with itextsharp can display this value ?
_Bruce_Robertson
MVP
_Bruce_Robertson
MVP
04-06-2018
Hi,
You have lost me, if it works then you should now know how to display the value.
The validate I was referring to was the code you have in the validate event of NIP1, which is what you have highlighted in the screen shot
sdasda37384323
sdasda37384323
04-06-2018
ok, itworks, but how to get value of display ? there is no function validate
_Bruce_Robertson
MVP
_Bruce_Robertson
MVP
04-06-2018
If you have a breakpoint in the validate of NIP1 then type "this.rawValue" (no quotes) in the debugger console and press control-enter. Otherwise, you can use the JavaScript dot references following your structure so Strona1.Naglowek.NIP1 ... depending on the current context.