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: Validate if field contains specific text - Adobe LiveCycle 11-05-2012
Try the below. Change the language to Java Script.var strText = TextField1.rawValue.toLowerCase();if(strText.indexOf("yahoo",0)>0) xfa.host.messageBox("Yahoo email addresses can not be used");ThanksSrini

Views

670

Likes

0

Replies

0
Re: Populating a drop down box based on another drop down box selection - Adobe LiveCycle 10-05-2012
Here is a sample that can give idea on how to do this..https://acrobat.com/#d=CpmL3cuLdnNPeJ6Vc0IhdQThanksSrini

Views

610

Likes

0

Replies

0
Re: Calculated text field background color - Adobe LiveCycle 09-05-2012
Lisa, The code is supposed to be placed in the calculate event and not on the Exit event. Since this field is readonly the user will never enter anything in the field so Exit event does not make sense. Below is the refined version of the calculate event code.. Change the scripting language to Java Script and paste the below code in Calculate event of the OverAll field (RedYellowGreen1).var Score = TotalScore.rawValue;var strColor = "";if(Score == 0 || Score== 1 || Score==2) strColor ="GREEN"; if...

Views

491

Likes

0

Replies

0
Re: Calculated text field background color - Adobe LiveCycle 09-05-2012
I am able to see the changes with that code in the exit event..Initialize and Change events are not the correct events to place this code.Initialize event will fire only once when you are opening the form.Change event will fire for every character you type into the Text field.May be if you can send the form to LiveCycle9@gmail.com I can have a look at it.ThanksSrini

Views

497

Like

1

Replies

0
Re: hide button for print - Adobe LiveCycle 09-05-2012
The option you set in the properties should work as expected. Not sure why the button is getting printed.Try placing the below code in the prePrint event of the button you want to hide in printing. this.relevant = "-print";ThanksSrini

Views

767

Likes

0

Replies

0
Re: reference current node, not parent in function - Adobe LiveCycle 09-05-2012
Usually "this" word refers to the current object where the code is getting executed. If you are calling this function from the Subform, then you need to pass "this" to the function as argument.If you want to consider one level up, then you need to pass this.parent and so on..Let me know if this helps or you need more help..ThanksSrini

Views

564

Like

1

Replies

0
Re: Help! - Adobe LiveCycle 09-05-2012
In the form, you had created a data connection to the form with the XML.Then you had also added the XML data file to the Preview property. That means when you Preview your form in the Designer, the data from XML will be loaded to the form based on the bindings done to the fields.In your case, you wanted the dropdown to be filled with values from the XML. So I asked you to place the code in the initialize event of the dropdown, so it will read the XML data and add values to the dropdown. Hope thi...

Views

550

Likes

0

Replies

0
Re: Expandable Table Help Needed - Adobe LiveCycle 09-05-2012
You can use Acrobat.com website to upload the document and post the link in this forum.OR you can post it to Google docs and paste the link also.ThanksSrini

Views

494

Like

1

Replies

0
Re: Master page disaster? - Adobe LiveCycle 09-05-2012
Master page is usually used to place the Header and footer info that needs to be displayed in all the pages of the form. To display the Page Numbers, Form Numbers etc..So if the content is specific to one page only, then keep it on Design View/ Body page. Else move it to the Master page.ThanksSrini

Views

462

Likes

0

Replies

0
Re: Access certain objects in an expanded table - Adobe LiveCycle 09-05-2012
You have to resolve to the particular row to get access to its field's values.var i=2;var oNode = xfa.resolveNode("xfa.form1.Page1.Table1.Row1[" + i + "]");To access the 3rd instance of Row1, pass 2 for the value of i.Then access the individual fields in Row1[2] by the following syntax. oNode.TextField1.rawValue;ThanksSrini

Views

464

Likes

0

Replies

0
Likes given to