I don't know what could have caused this. I have not updated the Java running on my machine.I have recently installed Flash Builder 4 for Flex development, but that's about it.
My Workbench just recently stopped working. Every time I try to open it I get a "Could not create the Java virtual machine" popup error.I have Office 2007 on my machine and Workbench had been working fine with Office 2207 up until now. I do not have Groove 2007 in my Office 2007 suite.I cannot unins...
Hi Jasmin,In the adminui, I went to the Security tab for the service and set dropdown for Require callers to Authenticate to No, but I am still being challenged for username and password. Am I missing something here?Thanks,Mike
I created a process in workbench to pull data from a database and added a data connection to the service to call the process and bind the data fields to the form. When I click on the button to invoke the service I am challenged with entering my username and password before the service returns any da...
Your syntax looks incorrect. It looks like you are missing the openning parenthesis '(' in the if statement and 1 should not be in quotes. This is an interger value and not a string value like "true". Also the objects are case sensitive so if your object name is TextField1 the script should reflect...
As Paul stated this code belongs in the Script Editor, not in the XML. In LiveCycle Designer go to the Window menu and make sure Script Editor is checked and you are able to see it. It most likely will show up across the top. In the Design View of your form click on the checkbox object you want the ...
Add the following script in the Change event for your particular checkbox and change TextField to the appropriate field that you want to become mandatory:if (this.rawValue == "true"){TextField.mandatory= "error";}else{TextField.mandatory= "disabled";}