Expand my Community achievements bar.

dohanlon
dohanlon
Offline
Type
  • All
  • Questions
  • Discussions
  • Ideas
  • Blogs
Filter by user contributions
  • This will not work in the change event as Snow.rawValue does not contain the correct value since the form is the process of changing it. Only when the change action has completed does the rawValue contain the correct updated value. Instead the object change value is stored in an xfa.event object. xf...

    Type

    Questions

    Views

    768

    Likes

    0

    Replies

    0
  • I am assuming you want to populate the last of the 3 fields (mileage rate)? If so, use the calculate event in formCalc with something likevar changeDate = Date2Num( "2012-07-01", "YYYY-MM-DD" )var expenseDate = Date2Num( dteexpenseDate.rawValue, "YYYY-MM-DD" )var expenseTest = expenseDate - changeDa...

    Type

    Questions

    Views

    318

    Likes

    0

    Replies

    0
  • Ah ok, you are probably not in the right forum then. This one is for XFA-based forms built with Designer (accessed through Forms->Start Form Wizard, Create a PDF Form from scratch) and not the in-built Acrobat Form->Add Or Edit Fields. I dont think the in-built fields have the funtionality you are l...

    Type

    Questions

    Views

    383

    Likes

    0

    Replies

    0
  • http://forums.adobe.com/thread/975945?tstart=0

    Type

    Questions

    Views

    246

    Likes

    0

    Replies

    0
  • What version of designer and acrobat/reader are you using? I tried later versions (8 and 9) and it paged correctly when all the parent containers where set to flow, all page-break and the fields set to auto-fit. If i remember correctly there was a bug that a single growable text field could not span...

    Type

    Questions

    Views

    381

    Likes

    0

    Replies

    0
  • PDF preview is using the currently automated instance of Acrobat or Reader to display your form design. However, font locations are different between the two applications. Designer takes its fonts from a local font folder in its app directory whereas Acrobat/Reader will attempt to resolve font names...

    Type

    Questions

    Views

    225

    Likes

    0

    Replies

    0
  • Should be fine without setting a pattern for this

    Type

    Questions

    Views

    975

    Like

    1

    Replies

    0
  • Try something like this after your code in the change event of the drop downfor (var i = 0; i < this.items.nodes.length; i++ ){    sValue = this.resolveNode("items.#text[" + i + "]").value;    if ( sValue === xfa.event.newText )    {        this.deleteItem( i );        xfa.event.change = "";        ...

    Type

    Questions

    Views

    373

    Likes

    0

    Replies

    0
  • Are you sure you still have the 1 at the end of the script block? That tells the validation engine not to fail and display a default message. Also check the patterns are the same for both date fields

    Type

    Questions

    Views

    975

    Likes

    0

    Replies

    0
  • I believe minH and minW are inherited attributes and are available to all containers even though they are not all implemented. A flowed subform only reserves enough space for visible content, so if there is no content to draw, there is no space available. The only space reserved outside the availabl...

    Type

    Questions

    Views

    1.1K

    Likes

    0

    Replies

    0