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

harry_shantoo
harry_shantoo
Offline

Badges

Badges
8

Accepted Solutions

Accepted Solutions
1

Likes Received

Likes Received
0

Posts & Comments

Posts & Comments
14

Discussions

Discussions
0

Questions

Questions
3

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by harry_shantoo
Customize the badges you want to showcase on your profile
Re: Multiple pages with Subforms - Adobe LiveCycle 03-06-2012
There is other things you have to do, setup the min count to 1 for the subform.

Views

257

Likes

0

Replies

0
Re: Multiple pages with Subforms - Adobe LiveCycle 31-05-2012
Finally found the solution.I changed the binding for first ItemBody to InvoiceDetail.ListOfInvoiceItemDetail.InvoiceItemDetail[*]in the calculate event of the second ItemBody wrote the script below_ItemBody.setInstances(English._ItemBody.count)In calculate event of each field the script below$.rawValue = xfa.form.Invoice.Root.English.ItemBody.SellerLineItemNum.rawValue

Views

251

Likes

0

Replies

0
Re: Multiple pages with Subforms - Adobe LiveCycle 30-05-2012
I came across this blog which is exactly what I am trying to do. http://blogs.adobe.com/formfeed/2010/05/duplicating_subform_structures .htmlMy form looks like this I am using the script in calculate event for ItemBody in the French Subform by making a change to the line as belowmatch(this, English.dataNode.resolveNodes("$.*"));but it is still not working any suggestions

Views

254

Likes

0

Replies

0
Re: Designer: repeating subforms over same xsd nodelist. - Adobe LiveCycle 30-05-2012
Hi Bruce,This is exactly what I want my Form looks something like below, the French subform is an exact duplicate of the english subform. The ItemBody subform is the repeating subform it works Ok in the first page but in the second page cannot see the items.My XML is something like below 1 1 2 2 The Binding I have in the first occurence of Subform ItemBody is InvoiceDetail.ListOfInvoiceItemDetail.InvoiceItemDetail[*]which works perfectly fine. I have used the script in calculate...

Views

398

Likes

0

Replies

0
Re: SubForm with data binding that repeats - Adobe LiveCycle 30-05-2012
Hi Scott,This is exactly what I want my Form looks something like below, the French subform is an exact duplicate of the english subform. The ItemBody subform is the repeating subform it works Ok in the first page but in the second page cannot see the items.My XML is something like below 1 1 2 2 The Binding I have in the first occurence of Subform ItemBody is InvoiceDetail.ListOfInvoiceItemDetail.InvoiceItemDetail[*] which works perfectly fine. But when trying to initialise the ...

Views

1.6K

Likes

0

Replies

0
Re: How to add subforms by Scripting - Adobe LiveCycle 30-05-2012
Hi Niall,I am trying to repeat the subform by duplicating it in the next page. All the header data is visible from the xml but the items appear only in the first subform, i was hoping to write a script to populate the subforms programmatically.Regards,Harry

Views

167

Likes

0

Replies

0
Re: Multiple pages with Subforms - Adobe LiveCycle 30-05-2012
The problem with the displaying the items in next page is, once the pdf is rendered with the item binding it has finished populating the English form.when it comes to the French form it does not know the index of the first item since it has already reached the last index of item in the English form.Is there a way to reset this data binding counter for multiple occurences to same node in different subforms?

Views

277

Likes

0

Replies

0
How to add subforms by Scripting - Adobe LiveCycle 30-05-2012
Hello All,I am trying to create an item subform based on the data in the XML, the item subform is reapeatable. I am using the code below to initiate the subform in the initialise event and fields to be displayed are under the ItemBody Subform.var List = ref(xfa.datasets.data.Invoice.InvoiceDetail.ListOfInvoiceItemDetail) for i=0 upto List.nodes.length step 1 do _ItemBody.addInstance(1) xfa.form.recalculate(1) endforCan anyone suggest the steps to create the subforms dynamically via scripting(Usi...

Views

695

Likes

0

Replies

2
Re: Multiple pages with Subforms - Adobe LiveCycle 29-05-2012
Hello all,I was able to fix the first issue by changing the binding, somehow when the 2nd page is rendering it does not like references with "[*]", which defines multiple occurences of the same field. Removing "[*]" in the binding worked out, Example instead of binding asInvoiceHeader.InvoiceReferences[*].PurchaseOrderReference.PurchaseOrderNumber.Reference.RefNumchanged it to InvoiceHeader.InvoiceReferences.PurchaseOrderReference.PurchaseOrderNumber.Reference.RefNumthis worked. But am still hav...

Views

255

Likes

0

Replies

0
Multiple pages with Subforms - Adobe LiveCycle 28-05-2012
Hello all,Have a requirement where the page 1 has to be repeated in otherwords Page1 will be english and Page 2 will be french.(the underlying fields to be displayed in both languages will be same but there labels will be different for each language) I am using just one master page with its default content area. The layout will look something like below.The content of subform English is flowed (top to Bottom), All the subforms within this subform are positioned and the ItemBody has "Allow Page B...

Views

1.6K

Likes

0

Replies

5