Expand my Community achievements bar.

Varma_LC
Varma_LC
Offline
Type
  • All
  • Questions
  • Discussions
  • Ideas
  • Blogs
Filter by user contributions
  • You have the script saved in wrong position also need to set up 'A9999' as Validation rule.Here you go...........<?xml version="1.0" encoding="UTF-8"?><?xfa generator="AdobeLiveCycleDesigner_V8.0" APIVersion="2.5.6290.0"?><xdp:xdp xmlns:xdp="http://ns.adobe.com/xdp/" timeStamp="2009-05-28T21:01:36Z"...

    Type

    Questions

    Views

    832

    Likes

    0

    Replies

    0
  • Replace line var ProjectNo=Project; with one of the following and make sure you have seleted the Language to "JavaScript" on the script window. Then try it worked for me it should work for you. Attach your copy if you still have issues.var ProjectNo=Project.rawValue;orvar ProjectNo=this.rawValue;

    Type

    Questions

    Views

    832

    Likes

    0

    Replies

    0
  • Here is simple rout to overcome this.......I would use JS script similar to the following in 'exit' event of the Text field. var element = this.rawValue;var subSection = element.substring(1,0);if(subSection == "B"){     //good }else if(subSection == "C") {     //good}else if(subSection == "D") {    ...

    Type

    Questions

    Views

    832

    Likes

    0

    Replies

    0
  • It is hard to explain but following change made trick.SecondPageSample.presence = "hidden"xfa.layout.relayout()Good Luck,

    Type

    Questions

    Views

    244

    Likes

    0

    Replies

    0
  • I have reviewed your code nothing wrong but it adding following line of code at the end of your script will do the trick you are expecting.xfa.layout.relayout();Good Luck,

    Type

    Questions

    Views

    349

    Likes

    0

    Replies

    0
  • I would use the following JS code in the 'exit' event of the List boxvar ListValue = this.rawValue;ListValue= replaceAll(ListValue, "\n", " ,");TextField1.rawValue= ListValue;function replaceAll(oldStr,findStr, repStr) {     var srchNdx = 0; // srchNdx will keep track of where in the whole line     ...

    Type

    Questions

    Views

    332

    Likes

    0

    Replies

    0
  • Catalog may have hundreds of products and may prices change regularly. Having that scenario in mind having a script fill-in the value from a stored variable on the template will prompt you to change the version of template for every single change. You may use querying option but it requires DNS crea...

    Type

    Questions

    Views

    1.2K

    Likes

    0

    Replies

    0