Expand my Community achievements bar.

MinusZero
MinusZero
Offline
Type
  • All
  • Questions
  • Discussions
  • Ideas
  • Blogs
Filter by user contributions
  • In the exit event (javascript) of the third field put://when the field is exited, the cursor will jump to the field specified.xfa.host.setFocus("myField");Be aware this will happen in all circumstances, like if you had to go back and edit the field, when exiting it will still focus on the field spec...

    Type

    Questions

    Views

    1.1K

    Likes

    0

    Replies

    0
  • As far as i know, the best you can do for Livecycle protection is to protect the whole form from editing. It doesnt seem to support individual user access passwords.I understand where you are coming from, as I am the only one who knows Livecycle in my office and I would not be happy to surrender any...

    Type

    Questions

    Views

    596

    Likes

    0

    Replies

    0
  • I think your javascripting is quite good. I still use basic javascript, but it gets the job done. Not sure how much i can help but i have a few thoughts:The number at the start of the error in the debugger shows the line where the problem is: what is on line 3 and line 57? Sounds like line 57 is ref...

    Type

    Questions

    Views

    3.3K

    Likes

    0

    Replies

    0
  • Hi,You would still use simple concatenation in Javascript but you need to specify the dropdownlist's raw value.Example:this.resolveNode("Requisition_Page7.Period").rawValue = "July 1" + ", " + DropDownList1.rawValue + " - September 30" + ", " + DropDownList1.rawValue;Notes:The DropDownList contains ...

    Type

    Questions

    Views

    881

    Likes

    0

    Replies

    0
  • I have done this many times, it is only as complex as you make it. What you need to do is simply have an 'in form storage'. This can be done with whatever fields you like. For an in form storage just create the 'storage' fields you need and make them hidden. You can have one storage field per item o...

    Type

    Questions

    Views

    648

    Likes

    0

    Replies

    0
  • Hi Barb,In my experience this usually occurs when there is an error in one of the other items built using the action builder. Check that the other scripts are ok.

    Type

    Questions

    Views

    741

    Likes

    0

    Replies

    0
  • Hi Tony,Change the field access type to protected. They will be read only but also you can't tab to them. You can still set a value to the field though with script even when protected.If you are scripting with them and you want to protect them again after opening the field use .access = "protected";

    Type

    Questions

    Views

    1.1K

    Likes

    0

    Replies

    0
  • I would give Row5[3] an actual name. I have found the [3] part can mess things up as it is also used as direct reference to a repeated instance.form1.#subform[0].RowData-Button_add::click - (JavaScript, client)switch(NoAccts.rawValue){case 1: this.resolveNode('Table2._NewRow5Name').addInstance(1); /...

    Type

    Questions

    Views

    1.2K

    Likes

    0

    Replies

    0
  • Hi,This could probably be done more elegantly with a loop, but i always find them too difficult to bother with.For simple javascript, you could do this:For a button click and a numeric fieldNote: This code only handles 1, 2 and 3 to add rowsIf your table already has one row, selecting 1 will add a s...

    Type

    Questions

    Views

    1.2K

    Likes

    0

    Replies

    0
  • Something like this?I added three numeric fields, two have currency patterns, one has a percentage pattern. In the formcalc calculate event of the subtotal object, i added the code there. Whenever the dollars or percentage object is changed, the subtotal will recalculate when the object is exited.

    Type

    Questions

    Views

    5.1K

    Likes

    0

    Replies

    0