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

Bamboomania
Bamboomania
Offline

Badges

Badges
11

Accepted Solutions

Accepted Solutions
4

Likes Received

Likes Received
5

Posts & Comments

Posts & Comments
19

Discussions

Discussions
0

Questions

Questions
1

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by Bamboomania
Customize the badges you want to showcase on your profile
Re: How can i condense in JavaScript? - Adobe LiveCycle 21-09-2011
Hi,To remove leading space;string.replace(/^\s+/, "");To remove leading zero;string.replace("/^0+/","");It's same as general javascript.Cheers!

Views

126

Like

1

Replies

0
Re: Text field value remove after click - Adobe LiveCycle 07-07-2011
Niall,Now I finally know what that field is for!!Real impressive.

Views

134

Likes

0

Replies

0
Re: Text field value remove after click - Adobe LiveCycle 07-07-2011
Hi,In the "enter" event of the textbox use following code with javascript;if (this.rawValue == "type your name"){ this.rawValue = "";}In the "exit" event of the textbox use following code with javascript;if (this.rawValue == null){ this.rawValue = "type your name";}Enjoy

Views

133

Like

1

Replies

0
Re: Need help in date Validation Urgent - Adobe LiveCycle 01-05-2011
Hi,You'll need to get javascript date from LCD field, and calculate & compare with the future date in javascript date.try following script; var sDate = StartDate.rawValue; var wkStartDate = util.scand("yyyy-mm-dd", sDate); var nYear = wkStartDate.getFullYear(); var nMonth = wkStartDate.getMonth(); var nDay = wkStartDate.getDate(); var wkFutureDate = new Date(nYear + 30 , nMonth, nDay); sDate = EndDate.rawValue; var wkEndDate = util.scand("yyyy-mm-dd", sDate); if (wkEndDate.getTime() > wkFutureDa...

Views

70

Likes

0

Replies

0
Re: Need Blank/Static Page after every main page display - Adobe LiveCycle 01-05-2011
Hi,I belive you have flowed main subform right under form object.Create new blank subform in the same level below your main subform, and set "Top of next page" to "Pagination"tab -> "Place" dropdown.I this will do the job.

Views

75

Likes

0

Replies

0
Re: populate data in the table - Adobe LiveCycle 01-05-2011
Hi,Try this.var i=0;for (var j = 0 ; j < b.length ; j++){ for (var k = 0 ; k < b[0].length ; k++){ a[i].rawValue=b[j][k] ; i++; }}

Views

189

Likes

0

Replies

0
Re: Charset Problems when sending to database - Adobe LiveCycle 25-04-2011
Hi,via php means you're sending to some url using "HTTP button"?If so, try using normal button and set control type to "Submit", then you should have selection of which charset is going to be used in "Submit" tab.

Views

72

Likes

0

Replies

0
Re: Change XML Data Order? - Adobe LiveCycle 12-04-2011
Hi,Did you check the "Data view" window?If you don't see anything shown there, then I guess "Hierarchy" window will be only place you can change the orders.

Views

158

Likes

0

Replies

0
Re: submit PDF data to servlet - Adobe LiveCycle 11-04-2011
Hi,I usually use asp and not familier with the jsp's, but it should be pretty much the same.In the LCD,1. use normal button and2. set property "Control type" to submit,3. put the URL that you are connecting to "submit" tab's "Submit to URL" box,4. select "XML" for "submit as" combothen on servlet side, you should find the xml data at "response.inputstream" or something similar in JSP command.to see the XML inside the PDF using the Javascript, use following snipet,xfa.datasets.data.saveXML("prett...

Views

191

Likes

0

Replies

0
Re: Problem with xfa.event.cancelAction in Reader X - Adobe LiveCycle 28-03-2011
I've checked with Reader 10.0.1.434 Japanese version, and thank god it's working now.Just in case somebody is interested.

Views

171

Likes

0

Replies

0
Likes given to
Likes from