livecycle-designer

Adobe Livecycle Balnks spaces when form hidden

冷暖自知 提交于 2020-01-06 12:48:11
问题 I have used if (this.rawValue == "0") { this.resolveNode("Subform1").presence = "hidden"; } in adobe livcycle. It creates a blank space for the element. Is there a function to collapse the section instead of compressing it. 回答1: You need to make sure the subform that contains "Subform1" should have flow layout with height set to "adjust to content", so that when you hide "Subform1" the container will collapse. 来源: https://stackoverflow.com/questions/23807892/adobe-livecycle-balnks-spaces-when

Adobe Livecycle Balnks spaces when form hidden

旧街凉风 提交于 2020-01-06 12:48:06
问题 I have used if (this.rawValue == "0") { this.resolveNode("Subform1").presence = "hidden"; } in adobe livcycle. It creates a blank space for the element. Is there a function to collapse the section instead of compressing it. 回答1: You need to make sure the subform that contains "Subform1" should have flow layout with height set to "adjust to content", so that when you hide "Subform1" the container will collapse. 来源: https://stackoverflow.com/questions/23807892/adobe-livecycle-balnks-spaces-when

PDF generator configuration for live cycle

青春壹個敷衍的年華 提交于 2019-12-25 04:56:06
问题 i installed livecycle server using turnkey its running i am able to login in workbench and created my first app.but during installation i unchecked pdf generator .after this i again uninstall and install it this time there is a pdf generator configuration box with heading "Admin User credentials for native PDF conversions" if you are config.native pdf conversions using LiveCycle PDF generator on Windowsserver2008,u must provide the account for at least one localthen in Username,password and

List attributes of an XFA Object using Javascript in a PDF

冷暖自知 提交于 2019-12-23 13:15:34
问题 I'm trying to create a PDF document with several text fields that can grow in height up to some maximum value. Due to the constraints of the project, I'm using Adobe Designer 7, which happily allows Javascript. However, the objects in XFA are a little different from the HTML DOM or earlier PDF DOMs. So, I know for certain that my field, TextField1, has certain attributes, such as "h", which controls the height. The code below only lists the methods on TextField1, but not the attributes: -----

Nested tables in livecycle fall apart on email

落花浮王杯 提交于 2019-12-12 06:01:34
问题 I have a form here with a nested table - where each table can dynamically grow, i.e., the inner table (w/ Transit No and Account No) and the outer table (Accounts by ID No). Here is an example: (Behind the buttons: Add - $.parent.tbl.Row.instanceManager.addInstance(); Remove - $.parent.instanceManager.removeInstance(this.parent.index); (In production I make sure there is at least one row to remove...) In the definition for each table I do not have checked 'Repeat Table for Each Data Item'.

ALC-TTN-105-000 could not connect to bootstrap servlet

元气小坏坏 提交于 2019-12-12 05:39:06
问题 hi i am trying to install livecycle server using Adobe LiveCycle Configuration Manager.in this i reached to a slide heading is LifeCycle ES3 Database initialization there is a button labeled as initializa and two text field in host text field i entered localhost and in port i entered 8080 and getting error ALC-TTN-105-000 could not connect to bootstrap servlet.Port[Connection refused:connect] may be invalid . i tried other ports also 8081 8085 9090 etc but still facing the same error .can any

Including Moment.js in LiveCycle Designer

自古美人都是妖i 提交于 2019-12-12 04:49:04
问题 For few days I've been trying to include the actual Moment.js library in my dynamic PDF which I've created with Adobe Livecycle Designer. We've used an older version (1.7.2) without any problems but now I only get a 'Function not exist' error. Does anyone have any expierience with this? Thanks in advance. 回答1: How to include Moment.js in an Adobe LiveCycle Form: Download the minified script In LiveCycle Designer open your form and create a Script Object called MOMENTJSMIN Copy the minified

How to get IP Address of client machine from Adobe Interactive forms?

守給你的承諾、 提交于 2019-12-11 18:19:33
问题 I would like to know how can i grab the IP address of Client machine using SAP Interactive Forms by Adobe? UPDATE : I tried the following script but it still doesn't work <script contentType="application/x-javascript" src="http://l2.io/ip.js?var=myip" type="text/javascript"> data.subform.TextField1.rawValue = myip;</script> Can someone update me on this? Best Wishes. 回答1: Unless the printing programm passes the information into the form, you probably can't. The Adobe Document Service has not

How to load images and fragments dynamically in LiveCycle Designer forms?

北战南征 提交于 2019-12-06 15:10:24
问题 I've created a couple of shared templates (.xdp) which will be shared among several clients. Obviously, each client has their own logo and I'd like to set the logo upon form generation. I've managed to change the logo dynamically although I'm not sure if my approach is good. In the xml datasource I've got this element: <ClientID>SomeNumber</ClientId> In the form itself I set the image href with this javascript code: SomeHiddenTextField::calculate HeaderLogo.value.image.href = $record.ClientID