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

Srini_Dhulipall
Srini_Dhulipall
Offline

Badges

Badges
40

Accepted Solutions

Accepted Solutions
255

Likes Received

Likes Received
178

Posts

Posts
1397

Discussions

Discussions
16

Questions

Questions
1381

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by Srini_Dhulipall
Customize the badges you want to showcase on your profile
Re: Help! - Adobe LiveCycle 09-05-2012
The form that you are using does not support Dynamic content on the form. This is because the form was a document to PDF form. In that scenario, LiveCycle treats the form as an Image and allows to be saved only Static PDF form.The population of the dropdown from the XML with the properties needs dynamic binding which can not be done with your form.You have two options. 1) Re develop the form in LiveCycle Designer so it can be saved as Dynamic PDF and will enable the dynamic bidnings for you. 2) ...

Views

549

Likes

0

Replies

0
Re: Hide all subforms using a for loop function - Adobe LiveCycle 08-05-2012
You need to pass the root subform as an argument to this function. Common.HideSubforms(this.parent.parent); In my screenshot, I was calling this function on the initialize event of the TextField1 inside Subform2.I need to pass the rootnode (Page1) to this function to work.ThanksSrini

Views

636

Likes

0

Replies

0
Re: Calculated text field background color - Adobe LiveCycle 08-05-2012
Change the 2nd line of code to below.. var fieldObj = xfa.resolveNode(vName + ".border.fill.color");ThanksSrini

Views

491

Like

1

Replies

0
Re: Help! - Adobe LiveCycle 08-05-2012
Can you send me the Form and XML to LiveCycle9@gmail.com so I can help you..ThanksSrini

Views

554

Likes

0

Replies

0
Re: Creating "if then" statements for a "promo code" - Adobe LiveCycle 08-05-2012
Did you try this..if (TextField1.rawValue == "discount")then NumericField1.rawValue = NumericField1-50;endif;ThanksSrini

Views

444

Likes

0

Replies

0
Re: Help! - Adobe LiveCycle 08-05-2012
You can do this but you may not be able to load the XML from a web URL. If the XML is an output of a WSDL call, then you may be able to.You can traverse thru the XML nodes using xfa.resolveNode method.The below code gives you the value of a node two levels deep from the root node. You can use this idea to traverse thru your XML nodes to get the specific value. xfa.resolveNode("$record..").value;ThanksSrini

Views

552

Likes

0

Replies

0
Re: Error messages HELP - Adobe LiveCycle 07-05-2012
The first screenshot I am not sure because I do not see any message..The second one is normal. It says you are trying to open a PDF on which the Reader Extensions applied. If you want to modify the form, choose Yes and continue. You may need to apply the Reader extension rights beore you send it to users.If you still have issues, send the form to LiveCycle9@gmail.com, so I can have a look at it.ThanksSrini

Views

509

Likes

0

Replies

0
Re: Time display incorrect using Output (generatePDFOutput) module - Adobe LiveCycle 03-05-2012
I changed the RenderPDF to generatePDFOutPut and I am getting the expected time format.Not sure what is wrong with the settings you made.If you still have issues, keep the RenderPDF option and then add the transformPDF service to flatten it out. That way it can keep the same format.ThanksSrini

Views

539

Likes

0

Replies

0
Re: Combining a form with other pdf pages - Adobe LiveCycle 03-05-2012
You can only do a PDF portfolio with PDFs developed in LiveCycle.When you use the Single PDF option it will not be able to merge the forms developed in LiveCycle.But if you develop/ modify the forms in Acrobat, you might be able to combine to a single PDF.ThanksSrini

Views

427

Likes

0

Replies

0
Re: Less than and greater than - Adobe LiveCycle 02-05-2012
Assuming rawValue of the total field is returning as "10000".In the Calculate event of the Total field, write the following with Java Script as language.VP_Signature.presence = "hidden";Officer_Signature.presence = "hidden";if(total.rawValue>10000){ VP_Signature.presence = "visible"; Officer_Signature.presence = "visible"; }else{ VP_Signature.presence = "hidden"; Officer_Signature.presence = "visible"; }ThanksSrini

Views

483

Likes

0

Replies

0
Likes given to