Expand my Community achievements bar.

gkaiseril
gkaiseril
Offline
Type
  • All
  • Questions
  • Discussions
  • Ideas
  • Blogs
Filter by user contributions
  • Have you looked at the "Phone Number" field in the "Custom" section of the "Library" window?It is for UK phone numbers, but one should be able to modify the "Dispaly Pattern", "Limit Length", "Validation Pattern" and "Validation Pattern Error Message".

    Type

    Discussions

    Views

    591

    Likes

    0

    Replies

    0
  • Clarence, You might want to start a new post, since your question is not deaing with the grid issue and may have more to do with a "Data Connection" in LiveCycle Designer.

    Type

    Discussions

    Views

    1.3K

    Likes

    0

    Replies

    0
  • Here is an exmaple of adding days the script is used in the "exit" event for the date select field that has display format of "MM/DD/YYYY". Adding days requires add x number of days to the days since the epoch date for the current date, adding months or years one needs to manipulate the string parts...

    Type

    Discussions

    Views

    3.1K

    Likes

    0

    Replies

    0
  • Have you tried selecting "View => Grid" from the menu bar?<br /><br />You can also use the keyboard short cut of <Ctrl> + '.

    Type

    Discussions

    Views

    1.3K

    Likes

    0

    Replies

    0
  • The syntax is listed in the "Scripting Reference" under LiveCycle Designer's menu "Help" option.if ( simple expression ) then list of expressionselseif ( simple expression ) then list of expressions else list of expressions endifThere are also examples available.You could also use JavaScript and t...

    Type

    Discussions

    Views

    618

    Likes

    0

    Replies

    0
  • For the code that reads:Surname = Concat(upper(Left(Surname,1)),lower(Right(Surname,Len(Surname)-1))) The correct case for the function name needs to used:Surname = Concat(Upper(Left(Surname,1)), Lower(Right(Surname,Len(Surname)-1)))One could use the "At()" function to find word boundaries in the st...

    Type

    Discussions

    Views

    2.7K

    Likes

    0

    Replies

    1
  • Yes, you need to create the form with Acrobat using Acrobat's Form Tool. Look under the menu option "Tools =>Forms" and select "Show Forms Toolbar" or the form field type you want to create. Acrobat is not really designed for creating forms but adding form fields and form interactivity, but you migh...

    Type

    Discussions

    Views

    734

    Likes

    0

    Replies

    0
  • Adobe is pushing its newest version, but from the Acrobat 9 Professional documentation there is this link to Acrobat 8 Professional:http://www.adobe.com/support/documentation/en/acrobatpro/documentation.htmlAnd from there you can get to the SDK documentation and other documentation links. You might ...

    Type

    Discussions

    Views

    524

    Likes

    0

    Replies

    0
  • You will need to create a special trusted function using Acrobat JavaScript and place the code in one of Acrobat's application level JavaScript folders to perform the "saveAs" method. You will then be able to call the trusted function from LiveCycle Designer. Depending upon how you write your specif...

    Type

    Discussions

    Views

    573

    Likes

    0

    Replies

    0
  • Look at the "Cancat()" function.

    Type

    Discussions

    Views

    613

    Likes

    0

    Replies

    0