Hello,I am experiencing issues with the renderPDFForm Service after changing my LiveCycle orchestration from long-lived to short-lived. The goal is to minimize database I/O and increase performance.The process is called using SOAP from .NET. The document type is passed along with some XML to prepopu...
Based on the selection in one DD list (named "Priority"), we are using the code below to populat another DD list (named "WOresolution14") with specific list items:form1.Page1.Subform-Page1-Info.Priority::exit - (JavaScript, client)//Clear out the WOresultion14 DDlistWOresolution14.rawValue= "";WOres...
I need to create a variableOnce the Project Number is selected a list of Task Numbers appear along with the Task Title (there will be quite a few Project Numbers to select from)for example I would like to select the Project Number from a dropdown list and the Task Number assigned to the Project Numb...
Hi everyone,I'm trying to extract xml data from pdf document, and when I'm going to render this same xml data (without any kind of modification) with the pdf document template, I have this NullPointerException. This template was the same that was used to generated the previous pdf.I'm working with A...
Here is the flow:public function buildModel(event:Event):void { chatModel = new SimpleChatModel(); chatModel.sharedID = "simpleChatModel"; chatModel.addEventListener(ChatEvent.HISTORY_CHANGE, onChatMsg); chatModel...
HI,My livecycle output is being processed via a custom python xml system.This has been throwing up issues with the xml special characters:' and<>My programmer is pointing the finger elsewhere (ie at livecycle) as they do, and has said that the issue arises as"it should escape the XML special charac...
Hello Experts.I have a form with three textboxes. I would like a warning box to display when saving warning the user that "These amounts don't match!". I would also like a textbox to become visible when saving the document, and to remain visible in the layout until the amounts match. I don't wan...
Hello experts.I received help on this just a few minutes ago, and it worked just fine so I closed the discussion and the form. However, now it no longer works and I don't know what I did. I have a form with a dropdown list and two text boxes. The first text box is populated based on the value s...
Hello experts.I have a simple form with a very long drop down list and two textboxes. I am using an array to populate textbox1 based on a value chosen in the drop down list, and this works as intended. Just a few of the values in the drop down list, but not all, should cause textbox2 to become rea...
I have a couple of areas of a form that use this code:DateTimeField2.rawValue = Num2Date(Date2Num(xfa.event.newText, "M/D/YYYY")+30,"MM/DD/YYYY");Essentially allows you to pick a date which then determines a future date 30 days from the date you chose. Seem simple enough however the date calculated ...